-
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.js REPL freezes with "while (true);" or "while (true){}" input #54193
Comments
This seems to be working as intended. While loops block the main thread, meaning no other execution can occur, hence the hanging. I've optimisticly marked this as wontfix, but another member of the org can always change that. If members agree, please close the issue as "Not planned". |
I believe the issue is that the repl hangs when you type in The preview evaluation works by sending a |
Oh okay. I've adjusted the labels, thanks! |
Yeah, exactly, the issue is with the preview, which simulates code
execution and relies on it completing to show you the preview; if the code
never finishes execution `theoretically` the response keeps waiting
indefinitely and the tty is rendered unresponsive.
…On Sun, Aug 4, 2024 at 6:30 PM Aviv Keller ***@***.***> wrote:
Oh okay. I've adjusted the labels, thanks!
—
Reply to this email directly, view it on GitHub
<#54193 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/BJ6CR56VXKRXVU6JYGUQ7HDZPZCI7AVCNFSM6AAAAABL6CU246VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENRXGU4DCMZQG4>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
The preview should be limited to 333ms. That's the hardcoded limit that is defined in the code. Could someone check if this is an issue with Node.js vs V8? |
Looking in to it @BridgeAR |
Its an issue from v8. Reporting to v8 and will analyze there. |
Please close the ticket as known deps issue. |
@MrJithil could you provide more information about why this is a known issue, what exactly goes wrong on V8? Thanks! |
I see. |
@nodejs/v8 the runtime inspector is not respecting the |
Yes. This has to be fixed in v8. Thats why it's a known dep issue. |
This was introduced in #49639. V8 option Running with
|
Version
v22.5.1
Platform
Subsystem
no modules were involved
What steps will reproduce the bug?
Open Node.js interactive mode by typing
node
in the terminal.2. Enter
while (false){}
orwhile (false);
.while (true);
orwhile (true){}
.How often does it reproduce? Is there a required condition?
It reproduces 100% of the time, the required condition is that you're on node.js interactive shell.
What is the expected behavior? Why is that the expected behavior?
the expected behavior would be the return value of the block of code used in the while-loop, since 'while (false);' returned
undefined
, something predictably consistent is also expected with 'while (true);'What do you see instead?
The terminal stops working until I kill the process manually with htop or
kill
command from another terminal.Additional information
the issue is that in node.js interactive mode, when I type "while (false){}" or "while (false);" it will make a vague display of undefined ready to be output, sort of like a google suggestion. Now, here's the real deal issue: try typing "while (true);" or "while (true){}" instead. Your terminal will freeze and the only way to stop node.js at that point would be to kill the process with kill or htop. I think I know the reason behind the issue: the "semi-google-suggestion-like" vague display. Its purpose is it show you what is ready to be displayed when you press Enter, to save you ease and time by assuming that you likely are just wanting to glance at outcomes oftentimes. But to achieve this process of simulating the google-like output display, it has to execute the command in the background, and wait for the return result of executing that command, then send it to the vague display, therefore resulting in the bug that freezes your terminal when you type "while (true);" in interactive mode.
The text was updated successfully, but these errors were encountered: