IdentityPython / pyFF

SAML metadata aggregator
https://pyff.io/
Other
50 stars 37 forks source link

Fix thread liveness check in tests #242

Closed c00kiemon5ter closed 1 year ago

c00kiemon5ter commented 1 year ago

threading.Thread.isAlive is a method carried over from Python 2. In Python 3 it is deprecated and instead threading.Thread.is_alive should be used.

Since Python 3.9 the isAlive method is removed.