mirror of https://github.com/rq/rq.git
Changed rqworker shutdown message.
- As requested by @nvie and @selwin.
This commit is contained in:
parent
fd1dca40b9
commit
5674edad61
|
@ -411,7 +411,7 @@ class Worker(object):
|
||||||
result = self.dequeue_job_and_maintain_ttl(timeout)
|
result = self.dequeue_job_and_maintain_ttl(timeout)
|
||||||
if result is None:
|
if result is None:
|
||||||
if burst:
|
if burst:
|
||||||
self.log.info("RQ worker, '%s', has died." % self.key)
|
self.log.info("RQ worker, '%s', done, quitting." % self.key)
|
||||||
break
|
break
|
||||||
except StopRequested:
|
except StopRequested:
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in New Issue