From d0683b61011c4d2dafd9d43677d4acbb17720d56 Mon Sep 17 00:00:00 2001 From: Bianca Date: Tue, 19 Mar 2024 14:07:32 +0000 Subject: [PATCH] Address comment --- internal/podman/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/podman/client.go b/internal/podman/client.go index da84c13e32..f3c713a19c 100644 --- a/internal/podman/client.go +++ b/internal/podman/client.go @@ -182,7 +182,7 @@ func (o *client) Diagnostics(ctx context.Context) *Diagnostic { if err != nil { d.MachineFound = false if d.MachineRequired { - d.Errors = append(d.Errors, fmt.Errorf("failed to detect podman machine: %w", err).Error()) + d.Errors = append(d.Errors, fmt.Sprintf("failed to detect podman machine: %s", err)) } } else { d.MachineInfo = info