aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-10-06 18:34:47 +0200
committerGitHub <noreply@github.com>2022-10-06 18:34:47 +0200
commiteb85012064804a5d6c027b77bf434970a6a141f9 (patch)
tree0cb08d281efae1442fe03d60df870124b6eb60c1 /cmd/podman
parent13a1c55d3f0d0cb9a34e865844278e935337cd1b (diff)
parentd4f622da7d81a9e92fc6c67fa5eec3c8e3172b93 (diff)
downloadpodman-eb85012064804a5d6c027b77bf434970a6a141f9.tar.gz
podman-eb85012064804a5d6c027b77bf434970a6a141f9.tar.bz2
podman-eb85012064804a5d6c027b77bf434970a6a141f9.zip
Merge pull request #16070 from boaz0/fix_system_service_uri
Return error in podman system service if URI scheme is not unix/tcp
Diffstat (limited to 'cmd/podman')
-rw-r--r--cmd/podman/system/service_abi.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/system/service_abi.go b/cmd/podman/system/service_abi.go
index 68ac8902b..82419ff1a 100644
--- a/cmd/podman/system/service_abi.go
+++ b/cmd/podman/system/service_abi.go
@@ -89,7 +89,7 @@ func restService(flags *pflag.FlagSet, cfg *entities.PodmanConfig, opts entities
return fmt.Errorf("unable to create socket %v: %w", host, err)
}
default:
- logrus.Debugf("Attempting API Service endpoint scheme %q", uri.Scheme)
+ return fmt.Errorf("API Service endpoint scheme %q is not supported. Try tcp://%s or unix:/%s", uri.Scheme, opts.URI, opts.URI)
}
libpodRuntime.SetRemoteURI(uri.String())
}