ros-visualization / rqt_reconfigure

http://wiki.ros.org/rqt_reconfigure
Other
23 stars 50 forks source link

Replace deprecated isAlive with is_alive #102

Closed timonegk closed 3 years ago

timonegk commented 3 years ago

Thread.isAlive() is deprecated and was removed in Python 3.9. Thread.is_alive() should be used instead. This change is backwards compatible (the is_alive spelling was added in Python 2.6). See also https://github.com/ros/ros_comm/pull/2092.