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:
parent
33475b7184
commit
4203ceee78
1 changed files with 1 additions and 1 deletions
|
@ -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{},
|
||||
|
||||
|
|
Loading…
Reference in a new issue