fix calling runInContext

Pass namespace created in middleware to `runInContext`
This commit is contained in:
Ebrahim Pasbani 2016-08-21 10:31:26 +04:30 committed by GitHub
parent 268716f69e
commit b89de83280
1 changed files with 1 additions and 1 deletions

View File

@ -55,6 +55,6 @@ function perRequestContextFactory(options) {
ns.set('http', {req: req, res: res});
}
next();
});
}, ns);
};
}