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:
Diffstat (limited to 'internal/gitaly/config/config.go')
-rw-r--r--internal/gitaly/config/config.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/gitaly/config/config.go b/internal/gitaly/config/config.go
index 4b816b752..f1aebe07d 100644
--- a/internal/gitaly/config/config.go
+++ b/internal/gitaly/config/config.go
@@ -108,6 +108,7 @@ type Git struct {
CatfileCacheSize int `toml:"catfile_cache_size"`
Config []GitConfig `toml:"config"`
IgnoreGitconfig bool `toml:"ignore_gitconfig"`
+ SigningKey string `toml:"signing_key"`
}
// GitConfig contains a key-value pair which is to be passed to git as configuration.
@@ -174,7 +175,7 @@ type StreamCacheConfig struct {
}
// Load initializes the Config variable from file and the environment.
-// Environment variables take precedence over the file.
+// Environment variables take precedence over the file.
func Load(file io.Reader) (Cfg, error) {
cfg := Cfg{
Prometheus: prometheus.DefaultConfig(),