Skip to content

Commit

Permalink
Fix the worker
Browse files Browse the repository at this point in the history
When the variable is specified, I cannot connect to the worker. Requests go unanswered, and I have been manually specifying the database name. However, when I remove the `-Q` option that tells Celery which queue to listen to, I no longer encounter this problem.
  • Loading branch information
grantfitzsimmons authored Dec 11, 2024
1 parent 674d5b4 commit fa220e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ services:
build:
context: ./.
target: run-development
command: bash -c "ve/bin/celery -A specifyweb worker -l INFO --concurrency=1 -Q $DATABASE_NAME"
command: bash -c "ve/bin/celery -A specifyweb worker -l INFO --concurrency=1"
init: true
volumes:
- "./config:/opt/Specify/config:ro"
Expand Down

0 comments on commit fa220e7

Please sign in to comment.