From 8aa3236ed48700504f853bacfddfe5d0153cbe41 Mon Sep 17 00:00:00 2001 From: mbussolotto Date: Wed, 22 May 2024 18:43:37 +0200 Subject: [PATCH] rebase fix --- mgrpxy/shared/podman/podman.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")) }