diff options
author | Nick Thomas <nick@gitlab.com> | 2019-06-06 13:57:50 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2019-06-06 13:57:50 +0000 |
commit | 10dcfac1f17cffbbc542d47bdf27b682ab453dd2 (patch) | |
tree | 046df7d2929558adae980f2c362253bf499d0f46 /lib | |
parent | 64c6987dfdcd5cb78b4a192a4632b227eabe801f (diff) | |
download | gitlab-ce-10dcfac1f17cffbbc542d47bdf27b682ab453dd2.tar.gz |
Revert "Merge branch 'pages-domain_ssl-valid-period' into 'master'"revert-a05f86ce
This reverts merge request !28743
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/background_migration/fill_valid_time_for_pages_domain_certificate.rb | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/gitlab/background_migration/fill_valid_time_for_pages_domain_certificate.rb b/lib/gitlab/background_migration/fill_valid_time_for_pages_domain_certificate.rb deleted file mode 100644 index 6bc39034ada..00000000000 --- a/lib/gitlab/background_migration/fill_valid_time_for_pages_domain_certificate.rb +++ /dev/null @@ -1,32 +0,0 @@ -# frozen_string_literal: true - -module Gitlab - module BackgroundMigration - # save validity time pages domain - class FillValidTimeForPagesDomainCertificate - # define PagesDomain with only needed code - class PagesDomain < ActiveRecord::Base - self.table_name = 'pages_domains' - - def x509 - return unless certificate.present? - - @x509 ||= OpenSSL::X509::Certificate.new(certificate) - rescue OpenSSL::X509::CertificateError - nil - end - end - - def perform(start_id, stop_id) - PagesDomain.where(id: start_id..stop_id).find_each do |domain| - domain.update_columns( - certificate_valid_not_before: domain.x509&.not_before&.iso8601, - certificate_valid_not_after: domain.x509&.not_after&.iso8601 - ) - rescue => e - Rails.logger.error "Failed to update pages domain certificate valid time. id: #{domain.id}, message: #{e.message}" - end - end - end - end -end |