Commit e6f6f8e7 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'osw-backport-dev-env-check-for-storage-settings-deprecation' into 'master'

Backport dev env check for storage settings deprecation

See merge request gitlab-org/gitlab-ce!18461
parents 772b6b08 132f7d33
deprecator = ActiveSupport::Deprecation.new('11.0', 'GitLab')
if Gitlab.com? || Rails.env.development?
if Gitlab.dev_env_or_com?
ActiveSupport::Deprecation.deprecate_methods(Gitlab::GitalyClient::StorageSettings, :legacy_disk_path, deprecator: deprecator)
end
......@@ -29,6 +29,6 @@ module Gitlab
end
def self.dev_env_or_com?
Rails.env.test? || Rails.env.development? || org? || com?
Rails.env.development? || org? || com?
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment