mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 02:57:59 +00:00
add noop ent supported storage check (#17883)
This commit is contained in:
@@ -7,7 +7,7 @@ import (
|
||||
|
||||
var (
|
||||
adjustCoreConfigForEnt = adjustCoreConfigForEntNoop
|
||||
checkStorageTypeForEnt = checkStorageTypeForEntNoop
|
||||
storageSupportedForEnt = checkStorageTypeForEntNoop
|
||||
)
|
||||
|
||||
func adjustCoreConfigForEntNoop(config *server.Config, coreConfig *vault.CoreConfig) {
|
||||
@@ -19,6 +19,6 @@ func getFIPSInfoKeyNoop() string {
|
||||
return ""
|
||||
}
|
||||
|
||||
func checkStorageTypeForEntNoop(coreConfig *vault.CoreConfig) error {
|
||||
return nil
|
||||
func checkStorageTypeForEntNoop(coreConfig *vault.CoreConfig) bool {
|
||||
return true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user