diff --git a/internal/docker/idlewatcher/watcher.go b/internal/docker/idlewatcher/watcher.go index 16cdf0f1..f0860d11 100644 --- a/internal/docker/idlewatcher/watcher.go +++ b/internal/docker/idlewatcher/watcher.go @@ -180,7 +180,7 @@ func (w *Watcher) wakeIfStopped() error { case "running": return nil default: - panic(errShouldNotReachHere) + return E.Errorf("unexpected container status: %s", status) } }