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:
authorDylan Griffith <dyl.griffith@gmail.com>2018-02-13 08:10:04 +0300
committerDylan Griffith <dyl.griffith@gmail.com>2018-02-13 08:10:04 +0300
commitbbcc18080b90bb21465d8b843f93703eca4a7c6f (patch)
treea529b716660fc6996193961726ea5c0132c37353 /doc/development
parente8648270affc4954f619aa7bd64a2f6e988f8a8a (diff)
Update sidekiq_style_guide.md
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 b3e74fc71cc..76ff51446ba 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 `gitlab/app/workers/all_queues.yml`
-otherwise your worker will not run.
+You must always add any new queues to `app/workers/all_queues.yml` otherwise
+your worker will not run.
## Queue Namespaces