🐛(helm) fix broken worker assignment due to extra space
Remove incorrect whitespace in queue names that prevented Celery workers from listening to proper queues. Workers were attempting to connect to non-existent queues, breaking task distribution.
This commit is contained in:
committed by
aleb_the_flash
parent
5caed6222b
commit
1d9caeb17f
@@ -212,7 +212,8 @@ celeryTranscribe:
|
||||
- "worker"
|
||||
- "--pool=solo"
|
||||
- "--loglevel=info"
|
||||
- "-Q transcribe-queue"
|
||||
- "-Q"
|
||||
- "transcribe-queue"
|
||||
|
||||
celerySummarize:
|
||||
replicas: 1
|
||||
@@ -248,7 +249,8 @@ celerySummarize:
|
||||
- "worker"
|
||||
- "--pool=solo"
|
||||
- "--loglevel=info"
|
||||
- "-Q summarize-queue"
|
||||
- "-Q"
|
||||
- "summarize-queue"
|
||||
|
||||
agents:
|
||||
replicas: 1
|
||||
|
||||
Reference in New Issue
Block a user