Merge pull request #4025 from strongloop/disable-context-tests

Fix context propagation broken by async@2.x
This commit is contained in:
Miroslav Bajtoš 2018-10-15 16:44:55 +02:00 committed by GitHub
commit b064b6d4bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 3 deletions

View File

@ -73,8 +73,21 @@ function rest() {
if (handlers.length === 1) {
return handlers[0](req, res, next);
}
async.eachSeries(handlers, function(handler, done) {
handler(req, res, done);
}, next);
executeHandlers(handlers, req, res, next);
};
}
// A trimmed-down version of async.series that preserves current CLS context
function executeHandlers(handlers, req, res, cb) {
var ix = -1;
next();
function next(err) {
if (err || ++ix >= handlers.length) {
cb(err);
} else {
handlers[ix](req, res, next);
}
}
}