Skip to content

Commit

Permalink
rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mbussolotto committed May 22, 2024
1 parent 7a5ecf2 commit 8aa3236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mgrpxy/shared/podman/podman.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
}
Expand Down Expand Up @@ -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"))
}
Expand Down

0 comments on commit 8aa3236

Please sign in to comment.