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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-31 06:07:51 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-31 06:07:51 +0300
commit83a3209c3f8e5bc055acf80f3440335d2b97133b (patch)
tree0bb8d48ee018534d319311358f7dab6549b752e1 /spec/workers
parentf6e2f302412fcb32b644b379778964791789cb62 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/concerns/waitable_worker_spec.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/workers/concerns/waitable_worker_spec.rb b/spec/workers/concerns/waitable_worker_spec.rb
index 1d76480ccb0..e7ef96c685d 100644
--- a/spec/workers/concerns/waitable_worker_spec.rb
+++ b/spec/workers/concerns/waitable_worker_spec.rb
@@ -58,21 +58,6 @@ describe WaitableWorker do
worker.bulk_perform_and_wait(arguments, timeout: 2)
end
-
- context 'when the skip_job_waiter_for_large_batches flag is disabled' do
- before do
- stub_feature_flags(skip_job_waiter_for_large_batches: false)
- end
-
- it 'runs jobs over 10 * the timeout using a waiter key' do
- arguments = 1.upto(21).map { |i| [i] }
- arguments_with_waiter = arguments.map { |arg| arg + [anything] }
-
- expect(worker).to receive(:bulk_perform_async).with(arguments_with_waiter)
-
- worker.bulk_perform_and_wait(arguments, timeout: 2)
- end
- end
end
describe '.bulk_perform_inline' do