From 1fcf08d5a58a8f8a5b55fad2c893a4ca3438bb3c Mon Sep 17 00:00:00 2001 From: Ragnar Paide Date: Tue, 2 Jun 2020 13:51:45 +0300 Subject: [PATCH] DTM-1161 Fixing logging bug --- Makefile | 2 +- pkg/adaptors/oidcclient/oidcclient.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 69b28cfe..d71a8132 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ TARGET := kubelogin TARGET_PLUGIN := kubectl-kubelogin -CIRCLE_TAG ?= v1.15.2-pipedrive +CIRCLE_TAG ?= v1.15.3-pipedrive LDFLAGS := -X main.version=$(CIRCLE_TAG) all: $(TARGET) diff --git a/pkg/adaptors/oidcclient/oidcclient.go b/pkg/adaptors/oidcclient/oidcclient.go index 46dda1d2..cf388930 100644 --- a/pkg/adaptors/oidcclient/oidcclient.go +++ b/pkg/adaptors/oidcclient/oidcclient.go @@ -81,7 +81,6 @@ func (c *client) wrapContext(ctx context.Context) context.Context { func (c *client) GetTokenByAuthCode(ctx context.Context, in GetTokenByAuthCodeInput, localServerReadyChan chan<- string) (*TokenSet, error) { ctx = c.wrapContext(ctx) - fmt.Println("Got it here before config") config := oauth2cli.Config{ OAuth2Config: c.oauth2Config,