We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Issue Summary: When using subprocess in Python with pipe_stderr=True but not reading from it, there are potential issues related to blocking behavior.
pipe_stderr=True
Steps to Reproduce:
max_connection_time
in_bytes = process.stdout.read(self.chunk * 2)
Expected Behavior: The subprocess should execute normally.
Actual Behavior: Hang forever at line in_bytes = process.stdout.read(self.chunk * 2)
Suggested Fix: Remove pipe_stderr=True or read stderr
Can I create a fix PR?
The text was updated successfully, but these errors were encountered:
@sondt2709 feel free to open a PR with the Fix. thanks!
Sorry, something went wrong.
No branches or pull requests
Issue Summary:
When using subprocess in Python with
pipe_stderr=True
but not reading from it, there are potential issues related to blocking behavior.Steps to Reproduce:
max_connection_time
to more than 10 mins to make sure it doesn't relate to websocket.in_bytes = process.stdout.read(self.chunk * 2)
in client.pyExpected Behavior:
The subprocess should execute normally.
Actual Behavior:
Hang forever at line
in_bytes = process.stdout.read(self.chunk * 2)
Suggested Fix:
Remove
pipe_stderr=True
or read stderrCan I create a fix PR?
The text was updated successfully, but these errors were encountered: