mirror of https://github.com/milvus-io/milvus.git
[skip e2e]Fix error log output format in mq_msgstream.go (#13808)
Signed-off-by: JackLCL <chenglong.li@zilliz.com>pull/13817/head
parent
46261278f0
commit
9f66b35d1f
|
@ -999,7 +999,7 @@ func (ms *MqTtMsgStream) Seek(msgPositions []*internalpb.MsgPosition) error {
|
|||
}
|
||||
tsMsg, err := ms.unmarshal.Unmarshal(msg.Payload(), headerMsg.Base.MsgType)
|
||||
if err != nil {
|
||||
return fmt.Errorf("Failed to unmarshal tsMsg, err %s", err.Error())
|
||||
return fmt.Errorf("failed to unmarshal tsMsg, err %s", err.Error())
|
||||
}
|
||||
if tsMsg.Type() == commonpb.MsgType_TimeTick && tsMsg.BeginTs() >= mp.Timestamp {
|
||||
runLoop = false
|
||||
|
|
Loading…
Reference in New Issue