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-19 16:26:06 +01:00
committed by Rémy Coutable
parent 10354f7a58
commit 6eacfa9986
2 changed files with 3 additions and 2 deletions
+2 -2
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
+1
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