Thomas Korte
Thomas Korte
Hi, is there any progress on that? Do you still want to integrate signature support? Thanks and regards Thomas
Same here... It's strange, because I've got the issue only in combination with a route pointing to a passport authentication....
Hi there, I also have an issue using passport (0.4.0, passport-local 1.0.0) with express-http-context and just tested your example with different versions of nodejs (10.15.0, 10.15.3, 8.11.3). I figured out...
Got it working by adding bindEmitter calls right before the first context.set: ``` app.use((req, res, next) => { context.ns.bindEmitter( req ); context.ns.bindEmitter( res ); context.set('param1', 'value1'); next(); }); ```