mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-09 00:33:28 -04:00
Fix printable check key not being valid
This commit is contained in:
parent
fc59d1e4e3
commit
5d706e165d
3 changed files with 10 additions and 6 deletions
|
|
@ -433,6 +433,7 @@ func ParseConfig(d string, logger log.Logger) (*Config, error) {
|
|||
"cache_size",
|
||||
"disable_cache",
|
||||
"disable_mlock",
|
||||
"disable_printable_check",
|
||||
"ui",
|
||||
"telemetry",
|
||||
"default_lease_ttl",
|
||||
|
|
|
|||
|
|
@ -55,12 +55,14 @@ func TestLoadConfigFile(t *testing.T) {
|
|||
DogStatsDTags: []string{"tag_1:val_1", "tag_2:val_2"},
|
||||
},
|
||||
|
||||
DisableCache: true,
|
||||
DisableCacheRaw: true,
|
||||
DisableMlock: true,
|
||||
DisableMlockRaw: true,
|
||||
EnableUI: true,
|
||||
EnableUIRaw: true,
|
||||
DisableCache: true,
|
||||
DisableCacheRaw: true,
|
||||
DisableMlock: true,
|
||||
DisableMlockRaw: true,
|
||||
DisablePrintableCheckRaw: true,
|
||||
DisablePrintableCheck: true,
|
||||
EnableUI: true,
|
||||
EnableUIRaw: true,
|
||||
|
||||
EnableRawEndpoint: true,
|
||||
EnableRawEndpointRaw: true,
|
||||
|
|
|
|||
|
|
@ -30,3 +30,4 @@ default_lease_ttl = "10h"
|
|||
cluster_name = "testcluster"
|
||||
pid_file = "./pidfile"
|
||||
raw_storage_endpoint = true
|
||||
disable_printable_check = true
|
||||
|
|
|
|||
Loading…
Reference in a new issue