2b3d00a778
Changes all calls to data_source_exists? to table_exists? since that is the intent of these calls
19 lines
633 B
Ruby
19 lines
633 B
Ruby
# frozen_string_literal: true
|
|
|
|
Gitlab.ee do
|
|
begin
|
|
public_key_file = File.read(Rails.root.join(".license_encryption_key.pub"))
|
|
public_key = OpenSSL::PKey::RSA.new(public_key_file)
|
|
Gitlab::License.encryption_key = public_key
|
|
rescue
|
|
warn "WARNING: No valid license encryption key provided."
|
|
end
|
|
|
|
# Needed to run migration
|
|
if ActiveRecord::Base.connected? && ActiveRecord::Base.connection.table_exists?('licenses')
|
|
message = LicenseHelper.license_message(signed_in: true, is_admin: true, in_html: false)
|
|
if ::License.block_changes? && message.present?
|
|
warn "WARNING: #{message}"
|
|
end
|
|
end
|
|
end
|