From ae69cc749fd83820bdfe5b23a76d8f1d9df0d858 Mon Sep 17 00:00:00 2001 From: Sargun Dhillon Date: Mon, 20 May 2019 03:39:47 -0700 Subject: [PATCH] Upgrade to Go 1.12 (#630) --- virtual-kubelet/commands/root/tracing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtual-kubelet/commands/root/tracing.go b/virtual-kubelet/commands/root/tracing.go index 2851b1f..9c99829 100644 --- a/virtual-kubelet/commands/root/tracing.go +++ b/virtual-kubelet/commands/root/tracing.go @@ -41,7 +41,7 @@ var ( func setupTracing(ctx context.Context, c Opts) error { for k := range c.TraceConfig.Tags { if reservedTagNames[k] { - return strongerrors.InvalidArgument(errors.Errorf("invalid trace tag %q, must not use a reserved tag key")) + return strongerrors.InvalidArgument(errors.Errorf("invalid trace tag %q, must not use a reserved tag key", k)) } } if c.TraceConfig.Tags == nil {