[skip ci]Fix error log output format in data_codec.go (#13382)

Signed-off-by: JackLCL <chenglong.li@zilliz.com>
pull/13997/head
JackLCL 2021-12-22 09:59:04 +08:00 committed by GitHub
parent ac915f4822
commit b79d751977
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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