diff options
-rw-r--r-- | doc/development/sidekiq_style_guide.md | 4 |
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 |