mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
toned down the error message for unconfigured master/slave
This commit is contained in:
parent
6b26a73681
commit
345329b69f
1 changed files with 4 additions and 4 deletions
|
@ -305,15 +305,15 @@ def main():
|
|||
masterstatus = get_master_status(cursor)
|
||||
try:
|
||||
module.exit_json( **masterstatus )
|
||||
except TypeError, e:
|
||||
module.fail_json(msg="Server is not configured as mysql master: %s" % e)
|
||||
except TypeError:
|
||||
module.fail_json(msg="Server is not configured as mysql master")
|
||||
|
||||
elif mode in "getslave":
|
||||
slavestatus = get_slave_status(cursor)
|
||||
try:
|
||||
module.exit_json( **slavestatus )
|
||||
except TypeError, e:
|
||||
module.fail_json(msg="Server is not configured as mysql slave: %s" % e)
|
||||
except TypeError:
|
||||
module.fail_json(msg="Server is not configured as mysql slave")
|
||||
|
||||
elif mode in "changemaster":
|
||||
print "Change master"
|
||||
|
|
Loading…
Reference in a new issue