Merge branch 'enable_trace_sidekiq_development' into 'master'

Turn on backtrace for sidekiq in development

See merge request gitlab-org/gitlab-ce!25515
This commit is contained in:
Douwe Maan 2019-02-26 09:41:48 +00:00
commit b0097199a3
1 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,10 @@ queues_config_hash[:namespace] = Gitlab::Redis::Queues::SIDEKIQ_NAMESPACE
# Default is to retry 25 times with exponential backoff. That's too much.
Sidekiq.default_worker_options = { retry: 3 }
if Rails.env.development?
Sidekiq.default_worker_options[:backtrace] = true
end
enable_json_logs = Gitlab.config.sidekiq.log_format == 'json'
Sidekiq.configure_server do |config|