mirror of https://github.com/milvus-io/milvus.git
[skip ci]Fix error log output format in segment_replica.go (#13350)
Signed-off-by: JackLCL <chenglong.li@zilliz.com>pull/13354/head
parent
1278e222d6
commit
30afcf2311
|
@ -296,7 +296,7 @@ func (replica *SegmentReplica) addNormalSegment(segID, collID, partitionID Uniqu
|
|||
log.Warn("Mismatch collection",
|
||||
zap.Int64("input ID", collID),
|
||||
zap.Int64("expected ID", replica.collectionID))
|
||||
return fmt.Errorf("Mismatch collection, ID=%d", collID)
|
||||
return fmt.Errorf("mismatch collection, ID=%d", collID)
|
||||
}
|
||||
|
||||
log.Debug("Add Normal segment",
|
||||
|
|
Loading…
Reference in New Issue