Paramiko Hanging During Authentication, When Runned By Dint Of Unittest Runner
Good day. I have a strange problem with paramiko ssh client. Connect paramiko method hangs when it's called outside unittest2 classes/functions and code was run by unittest runner.
Solution 1:
According to this SO answer, it seems to be a thread-related bug in paramiko and can be avoided by not calling connect() during import.
Post a Comment for "Paramiko Hanging During Authentication, When Runned By Dint Of Unittest Runner"