summaryrefslogtreecommitdiff
path: root/config/initializers/deprecations.rb
blob: c8d7f742bb117333e6bbd2d5e0bee79ff9fc0d98 (plain)
1
2
3
4
5
6
7
8
9
if Gitlab.dev_env_or_com?
  deprecator = ActiveSupport::Deprecation.new('11.0', 'GitLab')

  deprecator.behavior = -> (message, callstack) {
    Rails.logger.warn("#{message}: #{callstack[1..20].join}")
  }

  ActiveSupport::Deprecation.deprecate_methods(Gitlab::GitalyClient::StorageSettings, :legacy_disk_path, deprecator: deprecator)
end