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
local.[cmd].popen is hardcoded to redirect stdout to a named pipe. This can, quite easily, hang if the child process writes enough to stdout. Two potential fixes:
Fix the default behavior to match subprocess.Popen, which is to not redirect stdout.
OR
Provide a way to redirect stdout, instead of hardcoding it to use a named pipe.
local.[cmd].popen is hardcoded to redirect stdout to a named pipe. This can, quite easily, hang if the child process writes enough to stdout. Two potential fixes:
OR
I wrote an article about this behavior here: https://needleinathreadstack.wordpress.com/2024/08/26/debugging-python-for-fame-and-blog-posts/
The text was updated successfully, but these errors were encountered: