diff --git a/cmd/fshim/ipc/shim/shim.go b/cmd/fshim/ipc/shim/shim.go index 5e1606e..e1205b0 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 }