Merge pull request #94072 from Mr-Linus/patch-3

Remove TODO in cmd/kube-scheduler/app/options/options.go
This commit is contained in:
Kubernetes Prow Robot 2020-08-30 00:10:20 -07:00 committed by GitHub
commit 1aec0a0fe0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -347,7 +347,6 @@ func createClients(config componentbaseconfig.ClientConnectionConfiguration, mas
kubeConfig.AcceptContentTypes = config.AcceptContentTypes
kubeConfig.ContentType = config.ContentType
kubeConfig.QPS = config.QPS
//TODO make config struct use int instead of int32?
kubeConfig.Burst = int(config.Burst)
client, err := clientset.NewForConfig(restclient.AddUserAgent(kubeConfig, "scheduler"))