[skip ci]Fix error log output format in task.go (#13102)

Signed-off-by: JackLCL <chenglong.li@zilliz.com>
pull/13112/head
JackLCL 2021-12-09 19:45:28 +08:00 committed by GitHub
parent 26225a56d1
commit 7cb35e4172
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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