Skip to content

Commit

Permalink
perf: accelerate ic and ex gw update
Browse files Browse the repository at this point in the history
  • Loading branch information
oilbeater committed Oct 26, 2020
1 parent a61cce8 commit 47f0acb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/controller/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -389,11 +389,11 @@ func (c *Controller) startWorkers(stopCh <-chan struct{}) {

go wait.Until(func() {
c.resyncInterConnection()
}, 30*time.Second, stopCh)
}, time.Second, stopCh)

go wait.Until(func() {
c.resyncExternalGateway()
}, 30*time.Second, stopCh)
}, time.Second, stopCh)

go wait.Until(func() {
if err := c.markAndCleanLSP(); err != nil {
Expand Down

0 comments on commit 47f0acb

Please sign in to comment.