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.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/workers/propagate_integration_worker.rb b/app/workers/propagate_integration_worker.rb
index 68e38386372..bb954b12a25 100644
--- a/app/workers/propagate_integration_worker.rb
+++ b/app/workers/propagate_integration_worker.rb
@@ -7,7 +7,8 @@ class PropagateIntegrationWorker
idempotent!
loggable_arguments 1
- # Keep overwrite parameter for backwards compatibility.
+ # 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)
Admin::PropagateIntegrationService.propagate(Service.find(integration_id))
end