From a92eba7be981f2e33c2a087167e3728c7aecf5a2 Mon Sep 17 00:00:00 2001 From: Mike Danese Date: Wed, 21 Jun 2017 19:08:14 +0200 Subject: [PATCH] bump the gke-cert-controller wokers to match it's qps --- .../app/gke_certificates_controller.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/gke-certificates-controller/app/gke_certificates_controller.go b/cmd/gke-certificates-controller/app/gke_certificates_controller.go index 8cfd7534103..b0e64df1f0e 100644 --- a/cmd/gke-certificates-controller/app/gke_certificates_controller.go +++ b/cmd/gke-certificates-controller/app/gke_certificates_controller.go @@ -87,6 +87,6 @@ func Run(s *GKECertificatesController) error { } sharedInformers.Start(nil) - controller.Run(1, nil) // runs forever - return nil + controller.Run(5, nil) // runs forever + panic("unreachable") }