Merge "fix type error to streamline single-replica mariadb startup"

This commit is contained in:
Zuul 2019-02-07 17:21:07 +00:00 committed by Gerrit Code Review
commit 6620f08e49

View File

@ -731,7 +731,7 @@ elif get_cluster_state() == 'init':
run_mysqld()
elif get_cluster_state() == 'live':
logger.info("Cluster has been running starting restore/rejoin")
if not mariadb_replicas > 1:
if not int(mariadb_replicas) > 1:
logger.info(
"There is only a single node in this cluster, we are good to go")
update_grastate_on_restart()