diff --git a/core/lib/engine_http.js b/core/lib/engine_http.js index fe38189279..aa6890e3f5 100644 --- a/core/lib/engine_http.js +++ b/core/lib/engine_http.js @@ -468,7 +468,7 @@ HttpEngine.prototype.step = function step(requestSpec, ee, opts) { const code = res.statusCode; const path = res.req.method + ' ' + requestParams.requestEntryPath; - const requestName = requestParams.name || `${path} ${code}`; + const requestName = requestParams.name || path; const timings = {}; if (res.request.timings) { timings.wait = res.request.timings.socket || 0;