diff options
author | Douwe Maan <douwe@selenight.nl> | 2017-11-28 17:16:50 +0100 |
---|---|---|
committer | Douwe Maan <douwe@selenight.nl> | 2017-12-12 17:36:20 +0100 |
commit | b1849ee2e66b6355776397717a33dc7ada772332 (patch) | |
tree | 42cc03621690637e947c0677686ecf24a9771245 /app/workers/pipeline_update_worker.rb | |
parent | d673628de003d1ce1402f03311066339828fb811 (diff) | |
download | gitlab-ce-b1849ee2e66b6355776397717a33dc7ada772332.tar.gz |
Use a dedicated queue for each worker
Diffstat (limited to 'app/workers/pipeline_update_worker.rb')
-rw-r--r-- | app/workers/pipeline_update_worker.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/pipeline_update_worker.rb b/app/workers/pipeline_update_worker.rb index 24a8a9fbed5..fc9da2d45b1 100644 --- a/app/workers/pipeline_update_worker.rb +++ b/app/workers/pipeline_update_worker.rb @@ -2,7 +2,7 @@ class PipelineUpdateWorker include ApplicationWorker include PipelineQueue - enqueue_in group: :processing + queue_namespace :pipeline_processing def perform(pipeline_id) Ci::Pipeline.find_by(id: pipeline_id) |