Authored by 陈峰

Merge branch 'release/0704' into 'gray'

Release/0704



See merge request !322
... ... @@ -64,7 +64,7 @@ exports.serverError = () => {
code: 500
};
err.code = err.code || err.statusCode || 500;
err.code = parseInt(err.code || err.statusCode, 10) || 500;
if (req.isApmReport && !err.apiError) { // apierror在node lib中已经上报过了 不需要再次上报
// 上报服务端错误
... ...