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

Signed-off-by: xige-16 <xi.ge@zilliz.com>
pull/13817/head
xige-16 2021-12-20 22:57:11 +08:00 committed by GitHub
parent 9f66b35d1f
commit 852f078d09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ func (colReplica *collectionReplica) getSegmentByID(segmentID UniqueID) (*Segmen
func (colReplica *collectionReplica) getSegmentByIDPrivate(segmentID UniqueID) (*Segment, error) {
segment, ok := colReplica.segments[segmentID]
if !ok {
return nil, errors.New("cannot find segment in query node, id = " + strconv.FormatInt(segmentID, 10))
return nil, errors.New("cannot find segment in QueryNode, id = " + strconv.FormatInt(segmentID, 10))
}
return segment, nil