Skip to content

Commit 5118dc8

Browse files
committed
OPTIM/MINOR: schedule: wait until last command is done, before starting they new refresh cycle
1 parent 04d271c commit 5118dc8

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

pkg/controller/monitor.go

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ func (c *HAProxyController) SyncData() {
3737
if hadChanges || instance.NeedReload() {
3838
c.updateHAProxy()
3939
hadChanges = false
40+
if job.EventProcessed != nil {
41+
close(job.EventProcessed)
42+
}
4043
continue
4144
}
4245
case k8ssync.CR_GLOBAL:

pkg/k8s/main.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,12 @@ func (k k8s) MonitorChanges(eventChan chan k8ssync.SyncDataEvent, stop chan stru
194194
eventChan <- k8ssync.SyncDataEvent{SyncType: k8ssync.COMMAND}
195195
for {
196196
time.Sleep(syncPeriod)
197-
eventChan <- k8ssync.SyncDataEvent{SyncType: k8ssync.COMMAND}
197+
ep := make(chan struct{})
198+
eventChan <- k8ssync.SyncDataEvent{
199+
SyncType: k8ssync.COMMAND,
200+
EventProcessed: ep,
201+
}
202+
<-ep
198203
}
199204
}
200205

0 commit comments

Comments
 (0)