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
4 changed files with 7 additions and 8 deletions

View File

@@ -293,8 +293,7 @@ honcho start \
watch \
schedule \
worker_short \
worker_long \
worker_default
worker_long
```
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
- frontend, serves static assets through nginx frontend reverse proxies websocket and gunicorn.
- queue-long, long rq worker.
- queue-short, short rq worker.
- queue-long, long default and short rq worker.
- queue-short, default and short rq worker.
- schedule, event scheduler.
- websocket, socketio websocket for realtime communication.