From 1c4195b985b5bc6319758ddba42515cdde665961 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Thu, 1 Dec 2016 11:22:34 -0800 Subject: [PATCH] Fix string formatting --- client/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/util.go b/client/util.go index ff2fa3d25..3f7cef981 100644 --- a/client/util.go +++ b/client/util.go @@ -97,7 +97,7 @@ func persistState(path string, data interface{}) error { if stat, err := os.Stat(path); err != nil { return fmt.Errorf("unable to stat state file %s: %v", path, err) } else if stat.Size() == 0 { - return fmt.Errorf("persisted invalid state file %s; see https://github.com/hashicorp/nomad/issues/1367") + return fmt.Errorf("persisted invalid state file %s; see https://github.com/hashicorp/nomad/issues/1367", path) } return nil }