mirror of
https://github.com/bellingcat/whisperbox-transcribe.git
synced 2026-06-07 19:18:35 +03:00
10 lines
224 B
Python
10 lines
224 B
Python
from celery import Celery
|
|
|
|
|
|
def get_celery_binding(broker_url: str) -> Celery:
|
|
return Celery(
|
|
broker_url=broker_url,
|
|
broker_connection_retry=False,
|
|
broker_connection_retry_on_startup=False,
|
|
)
|