From d3f13cc6ff34272705b1e349276a7a1820767b80 Mon Sep 17 00:00:00 2001 From: Hector Fernandez Date: Fri, 19 Apr 2019 17:10:03 +0200 Subject: [PATCH] providers: fix string format (#575) --- providers/vic/vic_provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/vic/vic_provider.go b/providers/vic/vic_provider.go index f66522b8f..559204748 100644 --- a/providers/vic/vic_provider.go +++ b/providers/vic/vic_provider.go @@ -277,7 +277,7 @@ func (p *VicProvider) ExecInContainer(name string, uid types.UID, container stri // GetPodStatus retrieves the status of a pod by name from the provider. // This function needs to return a status or the reconcile loop will stop running. func (v *VicProvider) GetPodStatus(ctx context.Context, namespace, name string) (*v1.PodStatus, error) { - op := trace.NewOperation(context.Background(), "GetPodStatus - pod[%s], namespace", name, namespace) + op := trace.NewOperation(context.Background(), "GetPodStatus - pod[%s], namespace [%s]", name, namespace) defer trace.End(trace.Begin("GetPodStatus", op)) now := metav1.NewTime(time.Now())