summaryrefslogtreecommitdiff
path: root/config/initializers/deprecations.rb
blob: 2b07ca665e214be8096298b9cf0a2c5248fd58c4 (plain)
1
2
3
4
5
6
7
8
9
if Rails.env.development? || ENV['GITLAB_LEGACY_PATH_LOG_MESSAGE']
  deprecator = ActiveSupport::Deprecation.new('11.0', 'GitLab')

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

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