Merge pull request #5069 from AkihiroSuda/restart-fast
restart: skip Sleep() for the first iteration of the reconcilation
This commit is contained in:
commit
9884730e5c
@ -153,10 +153,10 @@ func (m *monitor) run(interval time.Duration) {
|
|||||||
interval = 10 * time.Second
|
interval = 10 * time.Second
|
||||||
}
|
}
|
||||||
for {
|
for {
|
||||||
time.Sleep(interval)
|
|
||||||
if err := m.reconcile(context.Background()); err != nil {
|
if err := m.reconcile(context.Background()); err != nil {
|
||||||
logrus.WithError(err).Error("reconcile")
|
logrus.WithError(err).Error("reconcile")
|
||||||
}
|
}
|
||||||
|
time.Sleep(interval)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user