You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cause of #3916 is unhandled rejections when removing breakpoints.
This is likely caused by new thread registrations resetting all breakpoints (not just the new thread), and if multiple overlap, they may try to remove the same breakpoints at the same time (and subsequent calls fail with "invalid params").
The text was updated successfully, but these errors were encountered:
Fixes#3916 by restoring the previous behaviour on older Node versions.
Opened #3918 for a proper fix to any places that are allowing promises to go unhandled.
The cause of #3916 is unhandled rejections when removing breakpoints.
This is likely caused by new thread registrations resetting all breakpoints (not just the new thread), and if multiple overlap, they may try to remove the same breakpoints at the same time (and subsequent calls fail with "invalid params").
The text was updated successfully, but these errors were encountered: