Normalize DataCoord in error string (#13557)

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
This commit is contained in:
congqixia 2021-12-17 11:05:15 +08:00 committed by GitHub
parent 081e1a6b06
commit 016514bee6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@ var errNilStatusResponse = errors.New("response has nil status")
var errUnknownResponseType = errors.New("unknown response type")
func msgDataCoordIsUnhealthy(coordID UniqueID) string {
return fmt.Sprintf("data coord %d is not ready", coordID)
return fmt.Sprintf("DataCoord %d is not ready", coordID)
}
func errDataCoordIsUnhealthy(coordID UniqueID) error {