Changes made as modifying master_auto_position parameter type to bool
This commit is contained in:
parent
14cf26f520
commit
c2ae5d8e4c
1 changed files with 1 additions and 2 deletions
|
@ -106,7 +106,6 @@ options:
|
||||||
master_auto_position:
|
master_auto_position:
|
||||||
descrtiption:
|
descrtiption:
|
||||||
- does the host uses GTID based replication or not
|
- does the host uses GTID based replication or not
|
||||||
possible values: 0,1
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
@ -235,7 +234,7 @@ def main():
|
||||||
login_host=dict(default="localhost"),
|
login_host=dict(default="localhost"),
|
||||||
login_unix_socket=dict(default=None),
|
login_unix_socket=dict(default=None),
|
||||||
mode=dict(default="getslave", choices=["getmaster", "getslave", "changemaster", "stopslave", "startslave"]),
|
mode=dict(default="getslave", choices=["getmaster", "getslave", "changemaster", "stopslave", "startslave"]),
|
||||||
master_auto_position=dict(default=None, choices=['0', '1']),
|
master_auto_position=dict(default=False, type='bool'),
|
||||||
master_host=dict(default=None),
|
master_host=dict(default=None),
|
||||||
master_user=dict(default=None),
|
master_user=dict(default=None),
|
||||||
master_password=dict(default=None),
|
master_password=dict(default=None),
|
||||||
|
|
Loading…
Reference in a new issue