From 66ecb1c9ff09cc7fc412b635963e368efec0b934 Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 7 May 2026 14:19:22 +1000 Subject: [PATCH] Fix verbose flag for worker task (#11883) --- tasks.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tasks.py b/tasks.py index 23470bf186..cda0ae29b2 100644 --- a/tasks.py +++ b/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])