2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-09-19 10:39:02 +00:00

fix: consume default queue (#1249)

This commit is contained in:
Revant Nandgaonkar 2023-10-25 10:51:30 +05:30 committed by GitHub
parent ebf3df296f
commit 839d44d167
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 8 deletions

View File

@ -70,11 +70,11 @@ services:
queue-short: queue-short:
<<: *backend_defaults <<: *backend_defaults
command: bench worker --queue short command: bench worker --queue short,default
queue-long: queue-long:
<<: *backend_defaults <<: *backend_defaults
command: bench worker --queue long command: bench worker --queue long,default,short
scheduler: scheduler:
<<: *backend_defaults <<: *backend_defaults

View File

@ -293,8 +293,7 @@ honcho start \
watch \ watch \
schedule \ schedule \
worker_short \ worker_short \
worker_long \ worker_long
worker_default
``` ```
Alternatively you can use the VSCode launch configuration "Honcho SocketIO Watch Schedule Worker" which launches the same command as above. Alternatively you can use the VSCode launch configuration "Honcho SocketIO Watch Schedule Worker" which launches the same command as above.

View File

@ -8,8 +8,8 @@ This setup is a very simple single compose file that does everything to start re
- backend, serves gunicorn backend - backend, serves gunicorn backend
- frontend, serves static assets through nginx frontend reverse proxies websocket and gunicorn. - frontend, serves static assets through nginx frontend reverse proxies websocket and gunicorn.
- queue-long, long rq worker. - queue-long, long default and short rq worker.
- queue-short, short rq worker. - queue-short, default and short rq worker.
- schedule, event scheduler. - schedule, event scheduler.
- websocket, socketio websocket for realtime communication. - websocket, socketio websocket for realtime communication.

View File

@ -119,7 +119,7 @@ services:
- bench - bench
- worker - worker
- --queue - --queue
- long - long,default,short
volumes: volumes:
- sites:/home/frappe/frappe-bench/sites - sites:/home/frappe/frappe-bench/sites
- logs:/home/frappe/frappe-bench/logs - logs:/home/frappe/frappe-bench/logs
@ -133,7 +133,7 @@ services:
- bench - bench
- worker - worker
- --queue - --queue
- short - short,default
volumes: volumes:
- sites:/home/frappe/frappe-bench/sites - sites:/home/frappe/frappe-bench/sites
- logs:/home/frappe/frappe-bench/logs - logs:/home/frappe/frappe-bench/logs