summaryrefslogtreecommitdiff
path: root/app/workers/propagate_integration_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/propagate_integration_worker.rb')
-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