Fix sanity issues (#609)

* Fix sanity issues

* Remove ignore entries
This commit is contained in:
Andrew Klychkov 2024-01-23 11:27:47 +01:00 committed by GitHub
parent 5ed3eaf3ee
commit e34209b3f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 7 additions and 30 deletions

View file

@ -176,7 +176,7 @@ def setvariable(cursor, mysqlvar, value, mode='global'):
def main():
argument_spec = mysql_common_argument_spec()
argument_spec.update(
variable=dict(type='str'),
variable=dict(type='str', required=True),
value=dict(type='str'),
mode=dict(type='str', choices=['global', 'persist', 'persist_only'], default='global'),
)