-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
node --inspect connecting with url in localhost:<port>/json gives malloc error with nightlies #7418
Comments
/cc @eugeneo |
Backtrace:
Steps to reproduce:
|
s/ |
Thanks will try it out in the nightlies On Wed, Jun 29, 2016 at 4:05 PM, Ali Ijaz Sheikh notifications@github.com
|
Inspector socket implementation was notifying handshake callback before performing the cleanups, which meant that callback could not reclaim resources allocated by the client. New implementation will free all resource not allocated by the client before calling the callback, allowing the client to complete the cleanup. Fixes: #7418 PR-URL: #7450 Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
Starting node as
node --debug-brk --inspect=9999
Then navigating to
http://localhost:9999/json
Gives
When connecting to devtoolsFrontendUrl: https://chrome-devtools-frontend.appspot.com/serve_file/@521e5b7e2b7cc66b4006a8a54cb9c4e57494a5ef/inspector.html
/cc @ofrobots @pavelfeldman @paulirish
The text was updated successfully, but these errors were encountered: