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/pages_update_configuration_worker.rb')
-rw-r--r--app/workers/pages_update_configuration_worker.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/workers/pages_update_configuration_worker.rb b/app/workers/pages_update_configuration_worker.rb
new file mode 100644
index 00000000000..d0904db6b42
--- /dev/null
+++ b/app/workers/pages_update_configuration_worker.rb
@@ -0,0 +1,23 @@
+# frozen_string_literal: true
+
+class PagesUpdateConfigurationWorker
+ include ApplicationWorker
+
+ idempotent!
+ feature_category :pages
+
+ def perform(project_id)
+ project = Project.find_by_id(project_id)
+ return unless project
+
+ result = Projects::UpdatePagesConfigurationService.new(project).execute
+
+ # The ConfigurationService swallows all exceptions and wraps them in a status
+ # we need to keep this while the feature flag still allows running this
+ # service within a request.
+ # But we might as well take advantage of sidekiq retries here.
+ # We should let the service raise after we remove the feature flag
+ # https://gitlab.com/gitlab-org/gitlab/-/issues/230695
+ raise result[:exception] if result[:exception]
+ end
+end