Comment 22 for bug 1921658

Revision history for this message
Dan Streetman (ddstreet) wrote :

> Can you try changing the VirshSSH() class constructor so that it passes echo=False to its superclass constructor, and see if that helps?

also - it seems like the class is trying to work around the fact it's not disabling echo, by eliding the first line of the reply, in the run() method - that will most likely need to be changed to simply use the entire 'result' instead of just 'result[1:]'. In fact the splitlines() followed by '\n'.join() probably should be removed and just return the entire decoded string.