Bumped updateCh limit to fix #2022

For larger clusters, updateCh with 1024 is not enough and prevents nginx from starting. Ideally
this will be auto sized or adjusted to start popping items off during original startup.
This commit is contained in:
dclayton 2018-02-13 09:53:23 -07:00
parent 33475b7184
commit 4203ceee78

View file

@ -106,7 +106,7 @@ func NewNGINXController(config *Configuration, fs file.Filesystem) *NGINXControl
}),
stopCh: make(chan struct{}),
updateCh: make(chan store.Event, 1024),
updateCh: make(chan store.Event, 99999),
stopLock: &sync.Mutex{},