Welcome to mirror list, hosted at ThFree Co, Russian Federation.

retry_acme_order_service.rb « pages_domains « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ef3d8ce0b67c4871514d009c7a844631623bd73a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module PagesDomains
  class RetryAcmeOrderService
    attr_reader :pages_domain

    def initialize(pages_domain)
      @pages_domain = pages_domain
    end

    def execute
      updated = pages_domain.with_lock do
        next unless pages_domain.auto_ssl_enabled && pages_domain.auto_ssl_failed

        pages_domain.update!(auto_ssl_failed: false)
      end

      PagesDomainSslRenewalWorker.perform_async(pages_domain.id) if updated
    end
  end
end