mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fix args schema regression in k8s module
Add back comma for required_one_of argument as it's supposed to be an iterable of iterables. PR #39787 by @Akasurde Fixes: #39786 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
committed by
Sviatoslav Sydorenko
parent
5af1d84842
commit
122780abce
@@ -349,7 +349,7 @@ def main():
|
||||
mutually_exclusive=(('file_reference', 'inline_data'),
|
||||
('url_username', 'insecure'),
|
||||
('url_password', 'insecure')),
|
||||
required_one_of=(('file_reference', 'inline_data')),
|
||||
required_one_of=(('file_reference', 'inline_data'),),
|
||||
)
|
||||
|
||||
if not HAS_LIB_YAML:
|
||||
|
||||
Reference in New Issue
Block a user