mirror of https://github.com/milvus-io/milvus.git
[skip ci]Fix error log output format in mq_msgstream.go (#13100)
Signed-off-by: JackLCL <chenglong.li@zilliz.com>pull/13112/head
parent
4fdb41aab0
commit
333f495e72
|
@ -975,7 +975,7 @@ func (ms *MqTtMsgStream) Seek(msgPositions []*internalpb.MsgPosition) error {
|
|||
return fmt.Errorf("when msgID's length equal to 0, please use AsConsumer interface")
|
||||
}
|
||||
if err = retry.Do(context.TODO(), fn, retry.Attempts(20), retry.Sleep(time.Millisecond*200)); err != nil {
|
||||
return fmt.Errorf("Failed to seek, error %s", err.Error())
|
||||
return fmt.Errorf("failed to seek, error %s", err.Error())
|
||||
}
|
||||
ms.addConsumer(consumer, mp.ChannelName)
|
||||
ms.chanMsgPos[consumer] = (proto.Clone(mp)).(*MsgPosition)
|
||||
|
|
Loading…
Reference in New Issue