mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
jira: Specify the correct argument type (#3368)
By default, all arguments are considered strings, but the module code expects the `fields` parameter to be a proper Python dictionary. Fixes #2600
This commit is contained in:
@@ -311,7 +311,7 @@ def main():
|
||||
comment=dict(),
|
||||
status=dict(),
|
||||
assignee=dict(),
|
||||
fields=dict(default={})
|
||||
fields=dict(default={}, type='dict')
|
||||
),
|
||||
supports_check_mode=False
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user