We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea065fe + 8f364e2 commit 0c62ec3Copy full SHA for 0c62ec3
cmd/registry/config-cache.yml
@@ -21,7 +21,7 @@ http:
21
X-Content-Type-Options: [nosniff]
22
redis:
23
addr: localhost:6379
24
- enabletls: true
+ enableTLS: true
25
pool:
26
maxidle: 16
27
maxactive: 64
configuration/configuration.go
@@ -177,7 +177,7 @@ type Configuration struct {
177
// DB specifies the database to connect to on the redis instance.
178
DB int `yaml:"db,omitempty"`
179
180
- EnableTLS bool `yaml:"enabletls,omitempty"`
+ EnableTLS bool `yaml:"enableTLS,omitempty"`
181
182
DialTimeout time.Duration `yaml:"dialtimeout,omitempty"` // timeout for connect
183
ReadTimeout time.Duration `yaml:"readtimeout,omitempty"` // timeout for reads of data
0 commit comments