mirror of https://github.com/milvus-io/milvus.git
[skip ci]Fix error log output format in meta_service.go (#13349)
Signed-off-by: JackLCL <chenglong.li@zilliz.com>pull/13354/head
parent
302584c59c
commit
5f02a3738a
|
@ -66,7 +66,7 @@ func (mService *metaService) getCollectionSchema(ctx context.Context, collID Uni
|
|||
}
|
||||
|
||||
if response.GetStatus().GetErrorCode() != commonpb.ErrorCode_Success {
|
||||
return nil, fmt.Errorf("Describe collection %v from rootcoord wrong: %s", collID, response.GetStatus().GetReason())
|
||||
return nil, fmt.Errorf("describe collection %v from rootcoord wrong: %s", collID, response.GetStatus().GetReason())
|
||||
}
|
||||
|
||||
return response.GetSchema(), nil
|
||||
|
|
Loading…
Reference in New Issue