mirror of https://github.com/milvus-io/milvus.git
[skip ci]Fix error log output format in flush_manager.go (#12857)
Signed-off-by: JackLCL <chenglong.li@zilliz.com>pull/12877/head
parent
f90410fe8e
commit
e51ef53632
|
@ -451,7 +451,7 @@ func (m *rendezvousFlushManager) injectFlush(injection *taskInjection, segments
|
|||
// fetch meta info for segment
|
||||
func (m *rendezvousFlushManager) getSegmentMeta(segmentID UniqueID, pos *internalpb.MsgPosition) (UniqueID, UniqueID, *etcdpb.CollectionMeta, error) {
|
||||
if !m.hasSegment(segmentID, true) {
|
||||
return -1, -1, nil, fmt.Errorf("No such segment %d in the replica", segmentID)
|
||||
return -1, -1, nil, fmt.Errorf("no such segment %d in the replica", segmentID)
|
||||
}
|
||||
|
||||
// fetch meta information of segment
|
||||
|
|
Loading…
Reference in New Issue