Guy Segev
Guy Segev
@bmeurer I've tried to implement a user request context using Async Hooks. I wrote about it a [blog post](https://medium.com/@guysegev/async-hooks-a-whole-new-world-of-opportunities-a1a6daf1990a). We used it for debugging purposes as well when we had...
I know the idea is to share production experience but I didnt dare to upload it to production yet :/. From our Dev experience, I'm deleting a request context using...
@TheBenji I wonder if we want to throw exception in that case
I meant to throw exception in case you don't have `executionAsyncId` ``` if (this.context[eid]) { this.context[eid][key] = val; } else { throw .... } ```
@eladchen Yes. I've asked about throwing an exception, and there is a conflict to resolve