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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-08-21 15:02:20 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-08-21 15:02:20 +0300
commit8417507201809daf0554c13ffb695b8142274f4f (patch)
treec0ae17734618c02eec7861aa85abc53a83a22e7e /spec/workers
parent48776f2786d22cecab97417141d43060c6cdee26 (diff)
Assign all pipeline workers to specific queues
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/expire_pipeline_cache_worker_spec.rb2
-rw-r--r--spec/workers/pipeline_hooks_worker_spec.rb2
-rw-r--r--spec/workers/pipeline_metrics_worker_spec.rb2
-rw-r--r--spec/workers/pipeline_notification_worker_spec.rb2
-rw-r--r--spec/workers/pipeline_process_worker_spec.rb2
-rw-r--r--spec/workers/pipeline_success_worker_spec.rb2
6 files changed, 12 insertions, 0 deletions
diff --git a/spec/workers/expire_pipeline_cache_worker_spec.rb b/spec/workers/expire_pipeline_cache_worker_spec.rb
index 54c9a69d329..85b24d5a8f0 100644
--- a/spec/workers/expire_pipeline_cache_worker_spec.rb
+++ b/spec/workers/expire_pipeline_cache_worker_spec.rb
@@ -43,4 +43,6 @@ describe ExpirePipelineCacheWorker do
subject.perform(pipeline.id)
end
end
+
+ it_behaves_like 'sidekiq worker'
end
diff --git a/spec/workers/pipeline_hooks_worker_spec.rb b/spec/workers/pipeline_hooks_worker_spec.rb
index 035e329839f..50b724d0111 100644
--- a/spec/workers/pipeline_hooks_worker_spec.rb
+++ b/spec/workers/pipeline_hooks_worker_spec.rb
@@ -20,4 +20,6 @@ describe PipelineHooksWorker do
end
end
end
+
+ it_behaves_like 'sidekiq worker'
end
diff --git a/spec/workers/pipeline_metrics_worker_spec.rb b/spec/workers/pipeline_metrics_worker_spec.rb
index ef71125c0b6..dac0b24d24a 100644
--- a/spec/workers/pipeline_metrics_worker_spec.rb
+++ b/spec/workers/pipeline_metrics_worker_spec.rb
@@ -47,4 +47,6 @@ describe PipelineMetricsWorker do
end
end
end
+
+ it_behaves_like 'sidekiq worker'
end
diff --git a/spec/workers/pipeline_notification_worker_spec.rb b/spec/workers/pipeline_notification_worker_spec.rb
index eb539ffd893..072866bf375 100644
--- a/spec/workers/pipeline_notification_worker_spec.rb
+++ b/spec/workers/pipeline_notification_worker_spec.rb
@@ -16,4 +16,6 @@ describe PipelineNotificationWorker, :mailer do
subject.perform(Ci::Pipeline.maximum(:id).to_i.succ)
end
end
+
+ it_behaves_like 'sidekiq worker'
end
diff --git a/spec/workers/pipeline_process_worker_spec.rb b/spec/workers/pipeline_process_worker_spec.rb
index 86e9d7f6684..81570c685ed 100644
--- a/spec/workers/pipeline_process_worker_spec.rb
+++ b/spec/workers/pipeline_process_worker_spec.rb
@@ -19,4 +19,6 @@ describe PipelineProcessWorker do
end
end
end
+
+ it_behaves_like 'sidekiq worker'
end
diff --git a/spec/workers/pipeline_success_worker_spec.rb b/spec/workers/pipeline_success_worker_spec.rb
index d1c84adda6f..83d006337bd 100644
--- a/spec/workers/pipeline_success_worker_spec.rb
+++ b/spec/workers/pipeline_success_worker_spec.rb
@@ -21,4 +21,6 @@ describe PipelineSuccessWorker do
end
end
end
+
+ it_behaves_like 'sidekiq worker'
end