Unify in log print (#16368)

Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
This commit is contained in:
bigsheeper 2022-04-06 14:09:35 +08:00 committed by GitHub
parent e73139deeb
commit 4f4a417c8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -492,7 +492,7 @@ func (node *QueryNode) waitChangeInfo(segmentChangeInfos *querypb.SealedSegments
return retry.Do(node.queryNodeLoopCtx, fn, retry.Attempts(50))
}
// remove the segments since it's already compacted or balanced to other querynodes
// remove the segments since it's already compacted or balanced to other QueryNodes
func (node *QueryNode) removeSegments(segmentChangeInfos *querypb.SealedSegmentsChangeInfo) error {
err := node.waitChangeInfo(segmentChangeInfos)
if err != nil {

View File

@ -171,7 +171,7 @@ func (r *addQueryChannelTask) Execute(ctx context.Context) error {
if err != nil {
return err
}
log.Debug("querynode seek query channel: ", zap.Any("consumeChannels", consumeChannels),
log.Debug("QueryNode seek query channel: ", zap.Any("consumeChannels", consumeChannels),
zap.String("seek position", string(r.req.SeekPosition.MsgID)))
}