summaryrefslogtreecommitdiff
path: root/app/workers/namespaces/onboarding_pipeline_created_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/namespaces/onboarding_pipeline_created_worker.rb')
-rw-r--r--app/workers/namespaces/onboarding_pipeline_created_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/namespaces/onboarding_pipeline_created_worker.rb b/app/workers/namespaces/onboarding_pipeline_created_worker.rb
index 4172e286474..c3850880df0 100644
--- a/app/workers/namespaces/onboarding_pipeline_created_worker.rb
+++ b/app/workers/namespaces/onboarding_pipeline_created_worker.rb
@@ -18,7 +18,7 @@ module Namespaces
namespace = Namespace.find_by_id(namespace_id)
return unless namespace
- OnboardingProgressService.new(namespace).execute(action: :pipeline_created)
+ Onboarding::ProgressService.new(namespace).execute(action: :pipeline_created)
end
end
end