diff --git a/internal/querycoord/cluster.go b/internal/querycoord/cluster.go index 298c86e687..9875c74c9e 100644 --- a/internal/querycoord/cluster.go +++ b/internal/querycoord/cluster.go @@ -582,7 +582,7 @@ func (c *queryNodeCluster) getNodeInfoByID(nodeID int64) (Node, error) { node, ok := c.nodes[nodeID] c.RUnlock() if !ok { - return nil, fmt.Errorf("getNodeInfoByID: query node %d not exist", nodeID) + return nil, fmt.Errorf("getNodeInfoByID: QueryNode %d not exist", nodeID) } nodeInfo, err := node.getNodeInfo()