Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2018-11-26 20:55:21 +0300
committerRobert Speicher <rspeicher@gmail.com>2018-11-26 20:55:21 +0300
commit4ec90095028b7519f64d209a9358831508dbf77f (patch)
treed844e9756c67d87839c699817a184782fce22a4f /doc/development
parent890addcbf3362ffada5fc61daa28b40f06d3812c (diff)
parentc02855f464dff8f490684619639f6f0e2ee8ed5e (diff)
Merge branch 'ce-rd-extract-ee-specific-sidekiq-queue-config' into 'master'
Backport of gitlab-ee!8470 See merge request gitlab-org/gitlab-ce!23150
Diffstat (limited to 'doc/development')
-rw-r--r--doc/development/sidekiq_style_guide.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/sidekiq_style_guide.md b/doc/development/sidekiq_style_guide.md
index 76ff51446ba..8e268224c98 100644
--- a/doc/development/sidekiq_style_guide.md
+++ b/doc/development/sidekiq_style_guide.md
@@ -17,8 +17,8 @@ would be `process_something`. If you're not sure what queue a worker uses,
you can find it using `SomeWorker.queue`. There is almost never a reason to
manually override the queue name using `sidekiq_options queue: :some_queue`.
-You must always add any new queues to `app/workers/all_queues.yml` otherwise
-your worker will not run.
+You must always add any new queues to `app/workers/all_queues.yml` or `ee/app/workers/all_queues.yml`
+otherwise your worker will not run.
## Queue Namespaces