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:
-rw-r--r--config.toml.example2
-rw-r--r--internal/config/config.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/config.toml.example b/config.toml.example
index 773e405bd..0a2a13b06 100644
--- a/config.toml.example
+++ b/config.toml.example
@@ -26,4 +26,4 @@ path = "/home/git/repositories"
# format = "json"
# #
# # Additionally exceptions can be reported to Sentry
-$ sentry_dsn = "https://<key>:<secret>@sentry.io/<project>"
+# sentry_dsn = "https://<key>:<secret>@sentry.io/<project>"
diff --git a/internal/config/config.go b/internal/config/config.go
index 43b02bc76..dbde35968 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -32,7 +32,7 @@ type Storage struct {
// Logging contains the logging configuration for Gitaly
type Logging struct {
Format string
- SentryDSN string `toml:"sentry_dsn" envconfig:"sentry_dsn"`
+ SentryDSN string `toml:"sentry_dsn"`
}
// Load initializes the Config variable from file and the environment.