mirror of https://github.com/milvus-io/milvus.git
[skip ci]Fix error log output format in task.go (#13102)
Signed-off-by: JackLCL <chenglong.li@zilliz.com>pull/13112/head
parent
26225a56d1
commit
7cb35e4172
|
@ -149,7 +149,7 @@ func (it *IndexBuildTask) checkIndexMeta(ctx context.Context, pre bool) error {
|
|||
return err
|
||||
}
|
||||
if len(values) == 0 {
|
||||
return fmt.Errorf("IndexNode checkIndexMeta the indexMeta is empty")
|
||||
return fmt.Errorf("indexNode checkIndexMeta the indexMeta is empty")
|
||||
}
|
||||
log.Debug("IndexNode checkIndexMeta load meta success", zap.Any("path", it.req.MetaPath), zap.Any("pre", pre))
|
||||
err = proto.Unmarshal([]byte(values[0]), &indexMeta)
|
||||
|
|
Loading…
Reference in New Issue