mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Fixing lint issues
This commit is contained in:
parent
a7de8f89c4
commit
b2072a2b24
1 changed files with 4 additions and 4 deletions
|
@ -511,9 +511,9 @@ class MySQL_Info(object):
|
||||||
|
|
||||||
def __get_slave_status(self):
|
def __get_slave_status(self):
|
||||||
"""Get slave status if the instance is a slave."""
|
"""Get slave status if the instance is a slave."""
|
||||||
if(self.is_mariadb()):
|
if self.is_mariadb():
|
||||||
res = self.__exec_sql('SHOW ALL SLAVES STATUS')
|
res = self.__exec_sql('SHOW ALL SLAVES STATUS')
|
||||||
else:
|
else:
|
||||||
res = self.__exec_sql('SHOW SLAVE STATUS')
|
res = self.__exec_sql('SHOW SLAVE STATUS')
|
||||||
if res:
|
if res:
|
||||||
for line in res:
|
for line in res:
|
||||||
|
@ -757,9 +757,9 @@ def main():
|
||||||
|
|
||||||
cursor.execute("SELECT VERSION()")
|
cursor.execute("SELECT VERSION()")
|
||||||
if 'mariadb' in cursor.fetchone()[0].lower():
|
if 'mariadb' in cursor.fetchone()[0].lower():
|
||||||
server_implementation="mariadb"
|
server_implementation = "mariadb"
|
||||||
else:
|
else:
|
||||||
server_implementation="mysql"
|
server_implementation = "mysql"
|
||||||
|
|
||||||
###############################
|
###############################
|
||||||
# Create object and do main job
|
# Create object and do main job
|
||||||
|
|
Loading…
Add table
Reference in a new issue