fs.sshfs
                                
                                
                                
                                    fs.sshfs copied to clipboard
                            
                            
                            
                        fs.sshfs not threadsafe?
When I try to make multiple calls to fs.open in a ThreadPoolExecutor my program hangs :(
Is fs.sshfs expected to be threadsafe? Is this a known issue?
I expect it to be, since paramiko.SFTPClient is supposed to be as well. I tried to test against the new workers tests added by Will but unfortunately it always reaches a point where SSHFile.read hangs undefinitely, and I can't understand why yet.
Yeah, my app hung when I tried to use multiple threads. I've currently worked around it by using a threadlocal copy.