mirror of https://github.com/milvus-io/milvus.git
[skip ci]Fix error log output format in meta_service.go (#12928)
Signed-off-by: JackLCL <chenglong.li@zilliz.com>pull/12966/head
parent
ee97722cd3
commit
a6ce7d7f53
|
@ -62,7 +62,7 @@ func (mService *metaService) getCollectionSchema(ctx context.Context, collID Uni
|
|||
|
||||
response, err := mService.rootCoord.DescribeCollection(ctx, req)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("Grpc error when describe collection %v from rootcoord: %s", collID, err.Error())
|
||||
return nil, fmt.Errorf("grpc error when describe collection %v from rootcoord: %s", collID, err.Error())
|
||||
}
|
||||
|
||||
if response.GetStatus().GetErrorCode() != commonpb.ErrorCode_Success {
|
||||
|
|
Loading…
Reference in New Issue