mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
fix undefined variable
This commit is contained in:
parent
88af430380
commit
319b7e86f3
1 changed files with 1 additions and 1 deletions
|
@ -408,7 +408,7 @@ class DbServer():
|
|||
Returns:
|
||||
library: Depending on a server type (MySQL or MariaDB).
|
||||
"""
|
||||
if get_server_type(cursor) == 'mariadb':
|
||||
if get_server_type(self.cursor) == 'mariadb':
|
||||
import ansible_collections.community.mysql.plugins.module_utils.implementations.mariadb.role as role_impl
|
||||
else:
|
||||
import ansible_collections.community.mysql.plugins.module_utils.implementations.mysql.role as role_impl
|
||||
|
|
Loading…
Add table
Reference in a new issue