fix undefined variable

This commit is contained in:
Laurent Indermuehle 2023-09-15 16:30:10 +02:00
parent 88af430380
commit 319b7e86f3
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -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