From 9704f66a3e93274acc51613b4da84fe75012eb2b Mon Sep 17 00:00:00 2001 From: zachGlasgow Date: Mon, 20 Jun 2016 22:34:39 +0100 Subject: [PATCH] Update DEVELOPER-ADVANCED.md We need to pass the queue names otherwise Sidekiq will use the 'default' name. However Sidekiq will need to process Critical and Low tasks as well. --- docs/DEVELOPER-ADVANCED.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/DEVELOPER-ADVANCED.md b/docs/DEVELOPER-ADVANCED.md index a12f2e4c9c0..1376682c610 100644 --- a/docs/DEVELOPER-ADVANCED.md +++ b/docs/DEVELOPER-ADVANCED.md @@ -64,7 +64,7 @@ Create a test account, and enable it with: Discourse does a lot of stuff async, so it's better to run sidekiq even on development mode: ruby $(mailcatcher) # open http://localhost:1080 to see the emails, stop with pkill -f mailcatcher - bundle exec sidekiq -d -l log/sidekiq.log # open http://localhost:3000/sidekiq to see the queue, stop with pkill -f sidekiq + bundle exec sidekiq -q critical,low,default -d -l log/sidekiq.log # open http://localhost:3000/sidekiq to see the queue, stop with pkill -f sidekiq bundle exec rails server And happy hacking!