- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 643
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Async local storage doesn't work with debuggers #3808
Comments
HttpContext working on each request, You can't use like that. |
That's exactly what I am using it for.
Do you mean I can't use debuggers for async local storage? As in that's a node issue? |
I don't know what is "yarn debug", but can you use "const context = HttpContext.get()" in controllers or not ? |
I am able to |
You did not run the debugger. Please do that. The issue is about whether it works in conjunction with debugger. Also, I am running it on MacOS if that helps. |
I am afraid you are either still not working with the debugger when the request is processing or it just works on Windows. In any case, I am attaching a video of the issue demonstrating it on a fresh AdonisJS project. |
@jaysson The context you have imported inside your service (in the shared video) is from the incorrect path. Look at the usage section https://docs.adonisjs.com/guides/async-local-storage#usage |
Also, I am not sure how VSCode debugger works under the hood. What happens when you use the official chrome dev-tools debugger? Run the following command to start the server in debugging mode. node ace serve --watch --node-args="--inspect" Here is Node.js documentation on debugging https://nodejs.org/en/docs/guides/debugging-getting-started/ |
Thank you for the response @thetutlage . While I did import the wrong path in the video, I had imported the right one earlier following the guide itself. Another video: https://youtu.be/_4ywWADRh1I |
Alright. Can you share this project as a repo and I will try to reproduce the issue on my end |
CC @targos Pinging in case you can share some insights on using debugger with Async local storage |
Repo of the same code from the video. It has one route -> controller -> calls a plain TS class. https://github.com/jaysson/adonis-als-debug |
After going through this PR nodejs/node#13870. I can see that somewhere between 8.5.0 and the latest release of Node, the issue was fixed. If you upgrade to the latest version of (ie 18.8.0 as of today) and then try with |
I am running node 18.6.0. Let me upgrade to 18.8.0 and see. |
Same issue on 18.8.0 (installed from homebrew). I am still on macOS big sur if that matters. |
Yup, I can confirm the issue still exists. Have to decouple it from AdonisJS and see if it still exists and then report it with Node |
I can reproduce it outside of AdonisJS as well. Here is a sample project. https://github.com/thetutlage/node-als-debugging Going to confirm with @targos before opening an issue |
Related issue nodejs/node#44415 |
This is fixed in Node.js and will be in the next release. In the mean time, you can use Node.js v16.x, which is not affected by the bug. |
Package version
5.8.0
Node.js and npm version
Node: v18.6.0, NPM: 8.13.2
Sample Code (to reproduce the issue)
It works fine when run normally. However
context
is null if I try to run it withyarn debug
, vscode, or webstorm.VSCode launch config
The text was updated successfully, but these errors were encountered: