Skip to content

Commit

Permalink
Updating config comments - v1.9.0 docs (#798)
Browse files Browse the repository at this point in the history
* Updating config comments

* linting

* removing debug comment

* Adding all default values for EnvPrefix in BaseMongoConf

* Updating config comments
  • Loading branch information
mativm02 authored Feb 27, 2024
1 parent 1b450df commit 328bc73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions storage/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand Down

0 comments on commit 328bc73

Please sign in to comment.