mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
Fix log level when starting a raft node (#29459)
This commit is contained in:
parent
39bce9fde3
commit
46ee2d0024
1 changed files with 1 additions and 1 deletions
|
|
@ -617,7 +617,7 @@ func NewRaftBackend(conf map[string]string, logger log.Logger) (physical.Backend
|
|||
isRemoved := new(atomic.Bool)
|
||||
removedVal, err := stableStore.GetUint64(removedKey)
|
||||
if err != nil {
|
||||
logger.Error("error checking if this node is removed. continuing under the assumption that it's not", "error", err)
|
||||
logger.Debug("error checking if this node is removed. continuing under the assumption that it's not", "error", err)
|
||||
}
|
||||
if removedVal == 1 {
|
||||
isRemoved.Store(true)
|
||||
|
|
|
|||
Loading…
Reference in a new issue