diff --git a/internal/querycoord/query_coord.go b/internal/querycoord/query_coord.go index 67f70c57e9..3586ed6617 100644 --- a/internal/querycoord/query_coord.go +++ b/internal/querycoord/query_coord.go @@ -280,7 +280,7 @@ func (qc *QueryCoord) SetRootCoord(rootCoord types.RootCoord) error { // SetDataCoord sets data coordinator's client func (qc *QueryCoord) SetDataCoord(dataCoord types.DataCoord) error { if dataCoord == nil { - return errors.New("null data coordinator interface") + return errors.New("null DataCoord interface") } qc.dataCoordClient = dataCoord