Skip to content

Commit

Permalink
Allow more events to be buffered before the backend starts
Browse files Browse the repository at this point in the history
  • Loading branch information
tomdee committed May 19, 2017
1 parent f6d73ef commit db0f3d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subnet/kube/kube.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func newKubeSubnetManager(c clientset.Interface, sc *subnet.Config, nodeName str
ksm.client = c
ksm.nodeName = nodeName
ksm.subnetConf = sc
ksm.events = make(chan subnet.Event, 100)
ksm.events = make(chan subnet.Event, 5000)
indexer, controller := cache.NewIndexerInformer(
&cache.ListWatch{
ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
Expand Down

0 comments on commit db0f3d3

Please sign in to comment.