Merge branch 'rs-sentry-release-tracking' into 'master'

Add release tracking for Sentry



See merge request !2863
This commit is contained in:
Douwe Maan 2016-02-18 21:10:35 +00:00
commit 6524fbeaba
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,6 @@ module Gitlab
Settings
end
VERSION = File.read(Rails.root.join("VERSION")).strip
REVISION = Gitlab::Popen.popen(%W(#{config.git.bin_path} log --pretty=format:%h -n 1)).first.chomp
VERSION = File.read(Rails.root.join("VERSION")).strip.freeze
REVISION = Gitlab::Popen.popen(%W(#{config.git.bin_path} log --pretty=format:%h -n 1)).first.chomp.freeze
end

View File

@ -14,6 +14,7 @@ if Rails.env.production?
if sentry_enabled
Raven.configure do |config|
config.dsn = current_application_settings.sentry_dsn
config.release = Gitlab::REVISION
end
end
end