You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 28, 2024. It is now read-only.
In latest version 0.3.0 we are facing an issue in expect method when self.channel.recv(self.buffer) receives multiple lines of strings at the same time. The expect will not match due to bellow piece of code where we are taking only the last line to check re.match
In latest version 0.3.0 we are facing an issue in expect method when self.channel.recv(self.buffer) receives multiple lines of strings at the same time. The expect will not match due to bellow piece of code where we are taking only the last line to check re.match
current_buffer_output_decoded = '\n' + self.current_output.splitlines()[-1]