diff options
| -rw-r--r-- | cmd/fshim/ipc/shim/shim.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/fshim/ipc/shim/shim.go b/cmd/fshim/ipc/shim/shim.go index 5e1606e3..e1205b08 100644 --- a/cmd/fshim/ipc/shim/shim.go +++ b/cmd/fshim/ipc/shim/shim.go @@ -117,7 +117,8 @@ func (s *Shim) Start(f CommandBuilder) (*time.Time, error) { conn = c } case <-time.After(shimSetupTimeout): - err := errors.New("timed out waiting for shim") + err := fmsg.WrapError(errors.New("timed out waiting for shim"), + "timed out waiting for shim to connect") s.AbortWait(err) return &startTime, err } |
