Skip to content

Commit

Permalink
fix stupid log line
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Oct 24, 2023
1 parent 6199515 commit 8bdd9c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sync/loop.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func (engine *Engine) ControlLoop() {
wait.PollInfinite(syncDelay, func() (done bool, err error) {
log.Info("Polling for new service updates")
count := min(engine.svcQueue.Len(), 20-pool.RunningWorkers())
log.Info("pulling next %d items from queue", count)
log.Info(fmt.Sprintf("pulling next %d items from queue", count))
for i := 0; i < count; i++ {
item, shutdown := engine.svcQueue.Get()
if shutdown {
Expand Down

0 comments on commit 8bdd9c3

Please sign in to comment.