Sergey Zhukov
Sergey Zhukov
I have similar issue. When output stream is not populated for a long period of time, I've got an exception: ``` Unhandled exception. System.AggregateException: One or more errors occurred. (Unable...
Also I found that timeout occures if container does not respond for a roughly 10 seconds. For example if I use `command="sleep 8 && echo test"` everything works fine. If...
What I found that stdout must be populated at least once every 10 seconds, otherwise you've got timeout exception. For example ``` command = ""sleep 3 && echo t1 &&...
I resolved my issue by rewriting from scratch ContainerAttachAsync/CopyOutputToAsync, Now it works correctly, no 10-seconds timeouts anymore.