summaryrefslogtreecommitdiff
path: root/pkg/bindings/connection.go
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2021-02-15 11:53:07 +0100
committerMatthew Heon <mheon@redhat.com>2021-02-18 10:47:04 -0500
commitaf37b6762f70b7dd31272d403c4c89753a54b281 (patch)
treecac4875c1aec7f95050cff1d28c52c95a1d68dd5 /pkg/bindings/connection.go
parent8dc2fb2c78a8404341e9e037ee4418d876c26366 (diff)
downloadpodman-af37b6762f70b7dd31272d403c4c89753a54b281.tar.gz
podman-af37b6762f70b7dd31272d403c4c89753a54b281.tar.bz2
podman-af37b6762f70b7dd31272d403c4c89753a54b281.zip
correct startup error message
The error message when failing to create an image engine unconditionally pointed to the Podman socket which is quite confusing when running locally. Move the error message to the point where the first ping to the service fails. [NO TESTS NEEDED] Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/bindings/connection.go')
-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
}