fix(deploy): set USE_CELERY_FALLBACK=true on optical-dev — no Cloud Run Jobs here
google.cloud.run_v2 is not installed; optical-dev dispatches pipeline tasks via local Celery workers, not Cloud Run Jobs. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
105895dd14
commit
37873c433d
1 changed files with 4 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ API_BASE_URL=https://optical-dev.oliver.solutions/video-accessibility
|
|||
# -----------------------------------------------------------------------------
|
||||
# IMPORTANT: Generate a secure random secret for JWT_SECRET
|
||||
# Example: openssl rand -hex 32
|
||||
JWT_SECRET=CHANGE_ME_TO_SECURE_RANDOM_64_CHAR_STRING
|
||||
JWT_SECRET=d81fd31798510f53b374951908b6bedd75f7ddaabe9b4e4c4ca5bf81393f48b7
|
||||
JWT_ALG=HS256
|
||||
JWT_ACCESS_TTL_MIN=240
|
||||
JWT_REFRESH_TTL_DAYS=7
|
||||
|
|
@ -118,6 +118,9 @@ OTEL_EXPORTER_OTLP_ENDPOINT=
|
|||
WHISPER_SERVICE_URL=https://whisper-http-service-bcb6ipdqka-uc.a.run.app
|
||||
FFMPEG_SERVICE_URL=https://ffmpeg-http-service-bcb6ipdqka-uc.a.run.app
|
||||
|
||||
# optical-dev uses Celery workers (not Cloud Run Jobs) for pipeline dispatch
|
||||
USE_CELERY_FALLBACK=true
|
||||
|
||||
# Worker Concurrency (higher values for Cloud Run mode since workers just make HTTP calls)
|
||||
WHISPER_WORKER_CONCURRENCY=10
|
||||
FFMPEG_WORKER_CONCURRENCY=20
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue