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
Bringing some discussion from #632 to this dedicated issue.
The way we currently handle STDIN and STDOUT can cause synchronization problems: #510 is a terrible bug.
The issue above is also a reason why we can't have progress bars back: #632.
Besides bugs and features, it also causes performance problems: #77, our worker threads block progress to do blocking IO.
@AntonHermann came up with a solution (sent in #632's discussion):
Basically, this enables us to solve all the previously listed issues!
Again, discussion and more details can be found at #632.
The text was updated successfully, but these errors were encountered:
stdin
Successfully merging a pull request may close this issue.
Bringing some discussion from #632 to this dedicated issue.
Problem
The way we currently handle STDIN and STDOUT can cause synchronization problems: #510 is a terrible bug.
The issue above is also a reason why we can't have progress bars back: #632.
Besides bugs and features, it also causes performance problems: #77, our worker threads block progress to do blocking IO.
Solution
@AntonHermann came up with a solution (sent in #632's discussion):
Basically, this enables us to solve all the previously listed issues!
Again, discussion and more details can be found at #632.
The text was updated successfully, but these errors were encountered: