BTHLABS-0000: Fix workspace-level tasks related to Celery

This commit is contained in:
2026-05-04 09:19:37 +02:00
parent 0611ceb3ec
commit dbb01a5225

View File

@@ -261,12 +261,12 @@ def start_web(ctx: Context, service):
@task
def start_celery_worker(ctx: Context, service):
_run_in_service(ctx, service, 'inv start-worker')
_run_in_service(ctx, service, 'inv start-celery-worker')
@task
def start_celery_beat(ctx: Context, service):
_run_in_service(ctx, service, 'inv start-beat')
_run_in_service(ctx, service, 'inv start-celery-beat')
@task