galaxyproject / pulsar

Distributed job execution application built for Galaxy
https://pulsar.readthedocs.io
Apache License 2.0
37 stars 50 forks source link

isAlive has been deprecated and removed in favor of is_alive in Python 3.9 #224

Closed tirkarthi closed 4 years ago

tirkarthi commented 4 years ago

isAlive has been deprecated alias for is_alive and has been removed in Python 3.9 . Python 3.9 PR : https://github.com/python/cpython/pull/15225

rg isAlive
pulsar/messaging/__init__.py
42:            if t.isAlive():

pulsar/managers/queued.py
74:            if worker.isAlive():

pulsar/managers/stateful.py
345:        if self.thread.isAlive():