mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Fix case where a failed fetchone() still return a dict
This commit is contained in:
parent
47710cfb93
commit
5c2fe15dc0
1 changed files with 3 additions and 3 deletions
|
@ -560,10 +560,10 @@ def main():
|
||||||
|
|
||||||
elif mode == "getreplica":
|
elif mode == "getreplica":
|
||||||
status = get_replica_status(cursor, connection_name, channel, replica_term)
|
status = get_replica_status(cursor, connection_name, channel, replica_term)
|
||||||
if not isinstance(status, dict):
|
if status and "Slave_IO_Running" in status and "Slave_SQL_Running" in status:
|
||||||
status = dict(Is_Replica=False, msg="Server is not configured as mysql replica")
|
|
||||||
else:
|
|
||||||
status['Is_Replica'] = True
|
status['Is_Replica'] = True
|
||||||
|
else:
|
||||||
|
status = dict(Is_Replica=False, msg="Server is not configured as mysql replica")
|
||||||
|
|
||||||
module.exit_json(queries=executed_queries, **status)
|
module.exit_json(queries=executed_queries, **status)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue