2
0
mirror of https://github.com/hibiken/asynq.git synced 2026-05-09 09:36:01 +08:00

Minor cleanup

This commit is contained in:
Ken Hibino
2019-11-27 06:21:57 -08:00
parent d35d345e2d
commit 60132f3208
3 changed files with 7 additions and 7 deletions

View File

@@ -54,7 +54,7 @@ func (p *poller) start() {
func (p *poller) exec() {
for _, zset := range p.zsets {
if err := p.rdb.forward(zset); err != nil {
log.Printf("[ERROR] could not forward scheduled tasks from %q: %v", zset, err)
log.Printf("[ERROR] could not forward scheduled tasks from %q: %v\n", zset, err)
}
}
}