mirror of https://github.com/milvus-io/milvus.git
enhance: Fix lb policy retry log after targetNode type changed (#37646)
Related to previous pr: #37371 Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/37658/head
parent
af433ffd68
commit
e7fb87d491
|
@ -200,7 +200,7 @@ func (lb *LBPolicyImpl) ExecuteWithRetry(ctx context.Context, workload ChannelWo
|
|||
zap.Error(err))
|
||||
excludeNodes.Insert(targetNode.nodeID)
|
||||
|
||||
lastErr = errors.Wrapf(err, "failed to get delegator %d for channel %s", targetNode, workload.channel)
|
||||
lastErr = errors.Wrapf(err, "failed to get delegator %d for channel %s", targetNode.nodeID, workload.channel)
|
||||
return lastErr
|
||||
}
|
||||
defer lb.clientMgr.ReleaseClientRef(targetNode.nodeID)
|
||||
|
@ -213,7 +213,7 @@ func (lb *LBPolicyImpl) ExecuteWithRetry(ctx context.Context, workload ChannelWo
|
|||
zap.Int64("nodeID", targetNode.nodeID),
|
||||
zap.Error(err))
|
||||
excludeNodes.Insert(targetNode.nodeID)
|
||||
lastErr = errors.Wrapf(err, "failed to search/query delegator %d for channel %s", targetNode, workload.channel)
|
||||
lastErr = errors.Wrapf(err, "failed to search/query delegator %d for channel %s", targetNode.nodeID, workload.channel)
|
||||
return lastErr
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue