diff --git a/mariadb/Chart.yaml b/mariadb/Chart.yaml index 7474e61d5..63cb4b689 100644 --- a/mariadb/Chart.yaml +++ b/mariadb/Chart.yaml @@ -15,7 +15,7 @@ apiVersion: v1 appVersion: v10.6.7 description: OpenStack-Helm MariaDB name: mariadb -version: 0.2.60 +version: 0.2.61 home: https://mariadb.com/kb/en/ icon: http://badges.mariadb.org/mariadb-badge-180x60.png sources: diff --git a/mariadb/templates/bin/_start.py.tpl b/mariadb/templates/bin/_start.py.tpl index c012963e0..cd7c8ec57 100644 --- a/mariadb/templates/bin/_start.py.tpl +++ b/mariadb/templates/bin/_start.py.tpl @@ -784,7 +784,7 @@ monitor_cluster_thread.daemon = True def launch_cluster_monitor(): """Launch grastate configmap updating thread""" - if not monitor_cluster_thread.isAlive(): + if not monitor_cluster_thread.is_alive(): monitor_cluster_thread.start() @@ -808,7 +808,7 @@ leader_election_thread.daemon = True def launch_leader_election(): """Launch leader election thread""" - if not leader_election_thread.isAlive(): + if not leader_election_thread.is_alive(): leader_election_thread.start() diff --git a/releasenotes/notes/mariadb.yaml b/releasenotes/notes/mariadb.yaml index 3f19599d8..03df5371c 100644 --- a/releasenotes/notes/mariadb.yaml +++ b/releasenotes/notes/mariadb.yaml @@ -76,4 +76,5 @@ mariadb: - 0.2.58 Prevent TypeError in get_active_endpoint function - 0.2.59 Give more time on resolving configmap update conflicts - 0.2.60 Refactor liveness/readiness probes + - 0.2.61 Avoid using deprecated isAlive() ...