Skip to content

Commit c2de1f0

Browse files
committed
change queue names
1 parent 2234f5a commit c2de1f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

matter_task_queue/celery_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
from .config import Config
1111

12-
CELERY_DEFAULT_QUEUE = f"{Config.INSTANCE_NAME.lower().replace('-','_')}_high_priority_queue"
13-
CELERY_LOW_PRIORITY_QUEUE = f"{Config.INSTANCE_NAME.lower().replace('-','_')}_low_priority_queue"
14-
CELERY_DEAD_LETTER_QUEUE = f"{Config.INSTANCE_NAME.lower().replace('-','_')}_dead_letter_queue"
12+
CELERY_DEFAULT_QUEUE = "high_priority_queue"
13+
CELERY_LOW_PRIORITY_QUEUE = "low_priority_queue"
14+
CELERY_DEAD_LETTER_QUEUE = "dead_letter_queue"
1515

1616

1717
@after_setup_logger.connect

0 commit comments

Comments
 (0)