PipeTimeout with channel.recv after reading 9999 lines from windows openssh server using paramiko
问题 I am trying to run multiple commands using paramiko. Channel.recv raises paramiko.buffered_pipe.PipeTimeout exactly after reading 9999 lines from server. I am connecting to remote Windows server 2012 with openssh installed from linux. Output from windows server has ANSI sequences and H code, so I could see Channel.recv waits for timeout after reading 9999 lines. Channel.recv(buffer_size) waits for timeout after this output b'\x1b[9999;54H' (9999 line, 54 column). Here is my minimal