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/praefect/config/node.go')
-rw-r--r--internal/praefect/config/node.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/praefect/config/node.go b/internal/praefect/config/node.go
index 0f02ba251..5c32837c6 100644
--- a/internal/praefect/config/node.go
+++ b/internal/praefect/config/node.go
@@ -9,9 +9,9 @@ import (
// Node describes an address that serves a storage
type Node struct {
- Storage string `toml:"storage,omitempty"`
- Address string `toml:"address,omitempty"`
- Token string `toml:"token,omitempty"`
+ Storage string `toml:"storage,omitempty" json:"storage"`
+ Address string `toml:"address,omitempty" json:"address"`
+ Token string `toml:"token,omitempty" json:"token"`
}
//nolint:revive // This is unintentionally missing documentation.