From 61e909a9f9a08b1ffbb215f4b0196a8c1b05e462 Mon Sep 17 00:00:00 2001 From: Darren Shepherd Date: Sat, 14 Apr 2018 23:42:10 -0700 Subject: [PATCH] Bump management threadiness to 50 from 5 --- config/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/context.go b/config/context.go index 3b8d4b92..013e5ef1 100644 --- a/config/context.go +++ b/config/context.go @@ -333,7 +333,7 @@ func (c *ManagementContext) Start(ctx context.Context) error { watcher.Stop() }() - return controller.SyncThenStart(ctx, 5, c.controllers()...) + return controller.SyncThenStart(ctx, 50, c.controllers()...) } func (c *ManagementContext) StartAndWait() error {