etcdserver: fix log typo when checking version compatiblity

Signed-off-by: Benjamin Wang <wachao@vmware.com>
dependabot/go_modules/go.uber.org/atomic-1.10.0
Benjamin Wang 2022-11-08 18:27:46 +08:00
parent 554b1bd0b0
commit 2ac149b96a
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ func isCompatibleWithVers(lg *zap.Logger, vers map[string]*version.Versions, loc
"cluster version of remote member is not compatible; too high",
zap.String("remote-member-id", id),
zap.String("remote-member-cluster-version", clusterv.String()),
zap.String("minimum-cluster-version-supported", minV.String()),
zap.String("maximum-cluster-version-supported", maxV.String()),
)
return false
}