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.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/propagate_integration_worker.rb b/app/workers/propagate_integration_worker.rb
index 9d21d92b6e3..099f423dc0f 100644
--- a/app/workers/propagate_integration_worker.rb
+++ b/app/workers/propagate_integration_worker.rb
@@ -12,6 +12,6 @@ class PropagateIntegrationWorker
idempotent!
def perform(integration_id)
- Admin::PropagateIntegrationService.propagate(Integration.find(integration_id))
+ ::Integrations::PropagateService.propagate(Integration.find(integration_id))
end
end