Commit 97a3fde
fix: Add celery queue specification to enable task processing
Critical fix for production celery-worker - adds queue specification to process tasks.
Problem: Celery-worker only listened to the default 'celery' queue, but transcription
tasks are sent to the 'gpu' queue. Uploaded files stayed 'pending' forever.
Solution: Add `-Q gpu,nlp,utility,celery` to match dev docker-compose.yml configuration.
Queues:
- gpu: WhisperX transcription and PyAnnote diarization
- nlp: LLM summarization and speaker identification
- utility: File recovery and maintenance
- celery: Default queue
Architecture Note:
GPU runtime config is handled separately via docker-compose.nvidia.yml override,
which is automatically merged by opentranscribe.sh when USE_NVIDIA_RUNTIME=true.
This keeps the base prod config GPU-agnostic for CPU-only deployments.
Verified: Both docker-compose.prod.yml and docker-compose.offline.yml now match
all critical configurations from docker-compose.yml (dev/ground truth).
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 047d2cb commit 97a3fde
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
161 | 161 | | |
162 | 162 | | |
163 | 163 | | |
164 | | - | |
| 164 | + | |
165 | 165 | | |
166 | 166 | | |
167 | 167 | | |
| |||
0 commit comments