Fix verbose flag for worker task (#11883)
This commit is contained in:
parent
610e275ca0
commit
66ecb1c9ff
4
tasks.py
4
tasks.py
|
|
@ -1560,9 +1560,7 @@ def worker(c, verbose: bool = False):
|
|||
Launches a django-q2 cluster to process background tasks.
|
||||
Ref: https://django-q2.readthedocs.io
|
||||
"""
|
||||
cmd = f'qcluster -v {2 if verbose else 0}'
|
||||
|
||||
manage(c, cmd, pty=True)
|
||||
manage(c, 'qcluster', pty=True, verbose=verbose)
|
||||
|
||||
|
||||
@task(post=[static, server])
|
||||
|
|
|
|||
Loading…
Reference in New Issue