[skip e2e]Improve log for QueryNode spell (#14105)

Signed-off-by: xige-16 <xi.ge@zilliz.com>
pull/14123/head
xige-16 2021-12-23 22:02:07 +08:00 committed by GitHub
parent a8cb995216
commit 28bf1f60a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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()