Results 3 comments of Nishant Chaturvedi

I also observed the same problem, however it's not related to generators: ```const cls = require("continuation-local-storage"); const ns = cls.createNamespace("namespace1"); ns.run(() => { ns.set("name", "Nishant"); setTimeout(() => { Promise.resolve() .then(()...

@hayes @carlisliu thanks for the response I really appreciate it. I think I did a bad job describing the issue correctly. Let's have a look at the following code: ```...