From 328bc732ac43911809309c12b26f2fc71da3b8df Mon Sep 17 00:00:00 2001 From: Matias Date: Tue, 27 Feb 2024 10:21:51 -0300 Subject: [PATCH] Updating config comments - v1.9.0 docs (#798) * Updating config comments * linting * removing debug comment * Adding all default values for EnvPrefix in BaseMongoConf * Updating config comments --- storage/store.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/storage/store.go b/storage/store.go index 109320efb..496d8af66 100644 --- a/storage/store.go +++ b/storage/store.go @@ -31,15 +31,15 @@ type TemporalStorageConfig struct { Port int `json:"port" mapstructure:"port"` // Deprecated: use Addrs instead. Hosts EnvMapString `json:"hosts" mapstructure:"hosts"` - // Use instead of the host value if you're running a cluster instance with multiple instances. + // Use instead of the host value if you're running a Redis cluster with multiple instances. Addrs []string `json:"addrs" mapstructure:"addrs"` // Sentinel master name. MasterName string `json:"master_name" mapstructure:"master_name"` // Sentinel password. SentinelPassword string `json:"sentinel_password" mapstructure:"sentinel_password"` - // DB username. + // Database username. Username string `json:"username" mapstructure:"username"` - // DB password. + // Database password. Password string `json:"password" mapstructure:"password"` // Database name. Database int `json:"database" mapstructure:"database"`