mirror of https://github.com/milvus-io/milvus.git
[skip ci]Fix error log output format in data_codec.go (#13382)
Signed-off-by: JackLCL <chenglong.li@zilliz.com>pull/13997/head
parent
ac915f4822
commit
b79d751977
|
@ -686,7 +686,7 @@ func (deleteCodec *DeleteCodec) Serialize(collectionID UniqueID, partitionID Uni
|
|||
return nil, err
|
||||
}
|
||||
if len(data.Pks) != len(data.Tss) {
|
||||
return nil, fmt.Errorf("The length of pks, and TimeStamps is not equal")
|
||||
return nil, fmt.Errorf("the length of pks, and TimeStamps is not equal")
|
||||
}
|
||||
length := len(data.Pks)
|
||||
sizeTotal := 0
|
||||
|
|
Loading…
Reference in New Issue