Commit d64d1566 authored by Robert Speicher's avatar Robert Speicher

Merge branch 'ee-allow-ee-in-backtraces' into 'master'

Include the ee/ directory in backtraces

See merge request gitlab-org/gitlab-ee!4930
parents 554e2c37 0ec65dce
# Be sure to restart your server when you modify this file. Rails.backtrace_cleaner.remove_silencers!
Rails.backtrace_cleaner.add_silencer { |line| line !~ Gitlab::APP_DIRS_PATTERN }
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
# Rails.backtrace_cleaner.remove_silencers!
require_dependency 'gitlab/git' require_dependency 'gitlab/git'
module Gitlab module Gitlab
SUBDOMAIN_REGEX = %r{\Ahttps://[a-z0-9]+\.gitlab\.com\z}
COM_URL = 'https://gitlab.com'.freeze COM_URL = 'https://gitlab.com'.freeze
APP_DIRS_PATTERN = %r{^/?(app|config|ee|lib|spec|\(\w*\))}
SUBDOMAIN_REGEX = %r{\Ahttps://[a-z0-9]+\.gitlab\.com\z}
SUBSCRIPTIONS_URL = 'https://customers.gitlab.com'.freeze SUBSCRIPTIONS_URL = 'https://customers.gitlab.com'.freeze
SUBSCRIPTIONS_PLANS_URL = "#{SUBSCRIPTIONS_URL}/plans".freeze SUBSCRIPTIONS_PLANS_URL = "#{SUBSCRIPTIONS_URL}/plans".freeze
......
...@@ -94,10 +94,12 @@ describe Gitlab::Profiler do ...@@ -94,10 +94,12 @@ describe Gitlab::Profiler do
it 'strips out the private token' do it 'strips out the private token' do
expect(custom_logger).to receive(:add) do |severity, _progname, message| expect(custom_logger).to receive(:add) do |severity, _progname, message|
next if message.include?('spec/')
expect(severity).to eq(Logger::DEBUG) expect(severity).to eq(Logger::DEBUG)
expect(message).to include('public').and include(described_class::FILTERED_STRING) expect(message).to include('public').and include(described_class::FILTERED_STRING)
expect(message).not_to include(private_token) expect(message).not_to include(private_token)
end end.twice
custom_logger.debug("public #{private_token}") custom_logger.debug("public #{private_token}")
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