Skip to content

Commit

Permalink
fix: celery non-beat worker
Browse files Browse the repository at this point in the history
Fix is the same as for the beat worker.
  • Loading branch information
regisb committed Jan 12, 2023
1 parent 5d8a4e0 commit 59b2868
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tutorcairn/patches/k8s-deployments
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ spec:
containers:
- name: cairn-superset-worker
image: {{ CAIRN_SUPERSET_DOCKER_IMAGE }}
args: ["celery", "worker", "--app=superset.tasks.celery_app:app", "-Ofair", "-l", "INFO"]
args: ["celery", "--app=superset.tasks.celery_app:app", "worker", "-Ofair", "-l", "INFO"]
volumeMounts:
- mountPath: /app/superset_config.py
name: config
Expand Down
2 changes: 1 addition & 1 deletion tutorcairn/patches/local-docker-compose-services
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ cairn-superset-worker:
image: {{ CAIRN_SUPERSET_DOCKER_IMAGE }}
volumes:
- ../plugins/cairn/apps/superset/superset_config.py:/app/superset_config.py:ro
command: celery worker --app=superset.tasks.celery_app:app -Ofair -l INFO
command: celery --app=superset.tasks.celery_app:app worker -Ofair -l INFO
restart: unless-stopped
healthcheck:
disable: true
Expand Down

0 comments on commit 59b2868

Please sign in to comment.