Add ellipsis, to indicate we're waiting here.

main
Vincent Driessen 13 years ago
parent b27786332c
commit 039a132374

@ -241,7 +241,7 @@ class Worker(object):
self.state = 'idle'
qnames = self.queue_names()
self.procline('Listening on %s' % (','.join(qnames)))
self.log.info('*** Listening for work on %s' % (', '.join(qnames)))
self.log.info('*** Listening for work on %s...' % (', '.join(qnames)))
wait_for_job = not burst
job = Queue.dequeue_any(self.queues, wait_for_job)
if job is None:

Loading…
Cancel
Save