Skip to content

Commit d85abd5

Browse files
committed
Updated to include resoultion to issue #53
System check identified no issues (0 silenced). Ran 29 tests in 7.164s OK
1 parent 0a96a24 commit d85abd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

django_dbq/management/commands/worker.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,12 @@ def handle(self, *args, **options):
175175

176176
if shift_limit_in_seconds:
177177
self.stdout.write(
178-
'Starting job worker for queue "%s" with rate limit %s/s and a shift constraint of %s seconds.'
178+
'Starting job worker for queue "%s" with rate limit of one job per %s second(s) and a shift constraint of %s seconds.'
179179
% (queue_name, rate_limit_in_seconds, shift_limit_in_seconds)
180180
)
181181
else:
182182
self.stdout.write(
183-
'Starting job worker for queue "%s" with rate limit %s/s.'
183+
'Starting job worker for queue "%s" with rate limit of one job per %s second(s).'
184184
% (queue_name, rate_limit_in_seconds)
185185
)
186186

0 commit comments

Comments
 (0)