summaryrefslogtreecommitdiff
path: root/config/initializers/sentry.rb
blob: 3ef46291981f72eb864458ae7543c7fda87e1d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Be sure to restart your server when you modify this file.

require 'gitlab/current_settings'
include Gitlab::CurrentSettings

# allow it to fail: it may do so when create_from_defaults is executed before migrations are actually done
begin
  sentry_enabled = current_application_settings.sentry_enabled
rescue
  sentry_enabled = false
end

if sentry_enabled
  Raven.configure do |config|
    config.dsn = current_application_settings.sentry_dsn
  end
end