From d8369fd39195247d5a71911404255eaa0fb54b59 Mon Sep 17 00:00:00 2001 From: Vallery Lancey Date: Sun, 27 Jan 2019 13:50:21 -0800 Subject: [PATCH] Amend TODO comment about ClientConnectionConfiguration's types (#73375) --- cmd/kube-proxy/app/server.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/kube-proxy/app/server.go b/cmd/kube-proxy/app/server.go index 9074b7f99e5..635fd0fc25d 100644 --- a/cmd/kube-proxy/app/server.go +++ b/cmd/kube-proxy/app/server.go @@ -463,6 +463,7 @@ func createClients(config componentbaseconfig.ClientConnectionConfiguration, mas kubeConfig.ContentType = config.ContentType kubeConfig.QPS = config.QPS //TODO make config struct use int instead of int32? + // https://github.com/kubernetes/kubernetes/issues/73375 kubeConfig.Burst = int(config.Burst) client, err := clientset.NewForConfig(kubeConfig)