Normalize DataNode term in errors.go (#13688)

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
pull/13746/head
congqixia 2021-12-20 12:20:50 +08:00 committed by GitHub
parent 71c595e696
commit d4afc812d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ import (
)
func msgDataNodeIsUnhealthy(nodeID UniqueID) string {
return fmt.Sprintf("data node %d is not ready", nodeID)
return fmt.Sprintf("DataNode %d is not ready", nodeID)
}
func errDataNodeIsUnhealthy(nodeID UniqueID) error {