[skip ci]Fix error log output format in meta_service.go (#12928)

Signed-off-by: JackLCL <chenglong.li@zilliz.com>
This commit is contained in:
JackLCL 2021-12-08 13:51:09 +08:00 committed by GitHub
parent ee97722cd3
commit a6ce7d7f53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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