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:
Diffstat (limited to 'app/workers/propagate_integration_worker.rb')
-rw-r--r--app/workers/propagate_integration_worker.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/workers/propagate_integration_worker.rb b/app/workers/propagate_integration_worker.rb
index bb954b12a25..5e694529bc0 100644
--- a/app/workers/propagate_integration_worker.rb
+++ b/app/workers/propagate_integration_worker.rb
@@ -3,6 +3,8 @@
class PropagateIntegrationWorker
include ApplicationWorker
+ sidekiq_options retry: 3
+
feature_category :integrations
idempotent!
loggable_arguments 1
@@ -10,6 +12,6 @@ class PropagateIntegrationWorker
# 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))
+ Admin::PropagateIntegrationService.propagate(Integration.find(integration_id))
end
end