diff --git a/mgrpxy/shared/podman/podman.go b/mgrpxy/shared/podman/podman.go index ebe1ae944..c1af8d84b 100644 --- a/mgrpxy/shared/podman/podman.go +++ b/mgrpxy/shared/podman/podman.go @@ -153,7 +153,7 @@ func getHttpProxyConfig() string { // GetContainerImage returns a proxy image URL. func GetContainerImage(flags *utils.ProxyImageFlags, name string) (string, error) { image := flags.GetContainerImage(name) - inspectedHostValues, err := shared_utils.InspectHost(false) + inspectedHostValues, err := shared_utils.InspectHost() if err != nil { return "", shared_utils.Errorf(err, L("cannot inspect host values")) } @@ -226,7 +226,7 @@ func Upgrade(globalFlags *types.GlobalFlags, flags *PodmanProxyFlags, cmd *cobra func getContainerImage(flags *utils.ProxyImageFlags, name string) (string, error) { image := flags.GetContainerImage(name) - inspectedHostValues, err := shared_utils.InspectHost(false) + inspectedHostValues, err := shared_utils.InspectHost() if err != nil { return "", shared_utils.Errorf(err, L("cannot inspect host values")) }