pyobs / pyobs-core

Core packages for pyobs
Other
10 stars 3 forks source link

Fix: SSHFile thread leakage #333

Closed GermanHydrogen closed 8 months ago

GermanHydrogen commented 8 months ago

The ssh connection is not closed when the SSHFile is closed, leading to thread leakage as the connection is opened in another thread.

This pull request fixes this by closing the ssh connection when the SSHFile is closed.