[skip e2e]Fix error log output format in mq_msgstream.go (#13808)

Signed-off-by: JackLCL <chenglong.li@zilliz.com>
pull/13817/head
JackLCL 2021-12-20 22:55:19 +08:00 committed by GitHub
parent 46261278f0
commit 9f66b35d1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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