backport of commit 58f029d6082b5231ca49312c75b360300781d399 (#21240)
Co-authored-by: Victor Rodriguez <vrizo@hashicorp.com>
This commit is contained in:
parent
79fe1f8d41
commit
a5e6a4614d
|
@ -0,0 +1,3 @@
|
||||||
|
```release-note:bug
|
||||||
|
core: Do not cache seal configuration to fix a bug that resulted in sporadic auto unseal failures.
|
||||||
|
```
|
|
@ -32,6 +32,11 @@ var cacheExceptionsPaths = []string{
|
||||||
"sys/expire/",
|
"sys/expire/",
|
||||||
"core/poison-pill",
|
"core/poison-pill",
|
||||||
"core/raft/tls",
|
"core/raft/tls",
|
||||||
|
|
||||||
|
// Add barrierSealConfigPath and recoverySealConfigPlaintextPath to the cache
|
||||||
|
// exceptions to avoid unseal errors. See VAULT-17227
|
||||||
|
"core/seal-config",
|
||||||
|
"core/recovery-config",
|
||||||
}
|
}
|
||||||
|
|
||||||
// CacheRefreshContext returns a context with an added value denoting if the
|
// CacheRefreshContext returns a context with an added value denoting if the
|
||||||
|
|
Loading…
Reference in New Issue