We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e0de2 commit 3733b2fCopy full SHA for 3733b2f
nbclient/client.py
@@ -772,6 +772,8 @@ async def _async_poll_for_reply(
772
deadline = monotonic() + timeout
773
new_timeout = float(timeout)
774
else:
775
+ # if we set new_timeout None value , and pass to the function of shell_channel.get_msg, will sometimes
776
+ # blocking so need pass a timeout value, and reset the value when timeout value exhausted
777
deadline = monotonic() + 5
778
new_timeout = float(5)
779
error_on_timeout_execute_reply = None
0 commit comments