From 016514bee66f1dcab1f3d98aa72f21cfedde405e Mon Sep 17 00:00:00 2001 From: congqixia Date: Fri, 17 Dec 2021 11:05:15 +0800 Subject: [PATCH] Normalize DataCoord in error string (#13557) Signed-off-by: Congqi Xia --- internal/datacoord/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/datacoord/errors.go b/internal/datacoord/errors.go index c1ef0dea3b..d7ccb904b7 100644 --- a/internal/datacoord/errors.go +++ b/internal/datacoord/errors.go @@ -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 {