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
path: root/app
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-05-26 06:10:53 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-26 06:10:53 +0300
commit5e2b15d28a2e75883faae4c06a4e1320f3143dff (patch)
tree23f0a09610fda935dd6d5318b70879989106a980 /app
parent294a256ae3173fea9519427fbe9f95126c803872 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app')
-rw-r--r--app/workers/propagate_integration_worker.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/workers/propagate_integration_worker.rb b/app/workers/propagate_integration_worker.rb
index 5e694529bc0..0f8229bdf09 100644
--- a/app/workers/propagate_integration_worker.rb
+++ b/app/workers/propagate_integration_worker.rb
@@ -9,9 +9,7 @@ class PropagateIntegrationWorker
idempotent!
loggable_arguments 1
- # TODO: Keep overwrite parameter for backwards compatibility. Remove after >= 14.0
- # https://gitlab.com/gitlab-org/gitlab/-/issues/255382
- def perform(integration_id, overwrite = nil)
+ def perform(integration_id)
Admin::PropagateIntegrationService.propagate(Integration.find(integration_id))
end
end