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
Trying to call stdin.flush() results with the following exception. This is with libsshpssh.clients.ssh.SSHClient client.
self = <pssh.clients.base.single.Stdin object at 0x7f2c6491ca60>
def flush(self):
"""Flush pending data written to stdin."""
> return self._client._eagain(self._channel.flush)
E AttributeError: 'ssh.channel.Channel' object has no attribute 'flush'
.venv/lib64/python3.10/site-packages/pssh/clients/base/single.py:71: AttributeError
The text was updated successfully, but these errors were encountered:
Trying to call
stdin.flush()
results with the following exception. This is withlibssh
pssh.clients.ssh.SSHClient
client.The text was updated successfully, but these errors were encountered: