Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer (GitLab) <jacob@gitlab.com>2018-04-06 11:05:13 +0300
committerZeger-Jan van de Weg <zegerjan@gitlab.com>2018-04-06 11:05:13 +0300
commit9cdc61b4369349fc875fa26a778549fcd2b744ea (patch)
treebafcebf21b05aea6e2cbc8f30b7b1714ac7e6be6 /internal/rubyserver
parent7dd226834a44f7ecfc13bfe607126827a2df800d (diff)
Send gitaly-ruby exceptions to their own DSN
Diffstat (limited to 'internal/rubyserver')
-rw-r--r--internal/rubyserver/rubyserver.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/rubyserver/rubyserver.go b/internal/rubyserver/rubyserver.go
index b05b8ca89..779bb00bb 100644
--- a/internal/rubyserver/rubyserver.go
+++ b/internal/rubyserver/rubyserver.go
@@ -109,7 +109,7 @@ func Start() (*Server, error) {
"GITALY_RUBY_GITALY_BIN_DIR="+cfg.BinDir,
"GITALY_VERSION="+version.GetVersion(),
)
- if dsn := cfg.Logging.SentryDSN; dsn != "" {
+ if dsn := cfg.Logging.RubySentryDSN; dsn != "" {
env = append(env, "SENTRY_DSN="+dsn)
}