summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-02-16 08:41:26 -0500
committerGitHub <noreply@github.com>2021-02-16 08:41:26 -0500
commit271c5612e898f6fea68b687fdfeccf2ecc0c0b46 (patch)
tree72f12a6a99fa7cc428ef5ce3fba1b35d25f3071b /pkg
parent7b17c77adc63c3dc062208189942543027f1495d (diff)
parent39c1fdb155e9b46db009eba100b8083876adc4aa (diff)
downloadpodman-271c5612e898f6fea68b687fdfeccf2ecc0c0b46.tar.gz
podman-271c5612e898f6fea68b687fdfeccf2ecc0c0b46.tar.bz2
podman-271c5612e898f6fea68b687fdfeccf2ecc0c0b46.zip
Merge pull request #9369 from vrothberg/startup-errors
correct startup error message
Diffstat (limited to 'pkg')
-rw-r--r--pkg/bindings/connection.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/bindings/connection.go b/pkg/bindings/connection.go
index 7b26037eb..6ff072e75 100644
--- a/pkg/bindings/connection.go
+++ b/pkg/bindings/connection.go
@@ -124,7 +124,7 @@ func NewConnectionWithIdentity(ctx context.Context, uri string, identity string)
ctx = context.WithValue(ctx, clientKey, &connection)
if err := pingNewConnection(ctx); err != nil {
- return nil, err
+ return nil, errors.Wrap(err, "cannot connect to the Podman socket, please verify that Podman REST API service is running")
}
return ctx, nil
}