mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
ovirt_host_network: Fix type conversion (#47617)
Signed-off-by: Ondra Machacek <omachace@redhat.com>
This commit is contained in:
committed by
John R Barker
parent
d3fe6c01f2
commit
36b0aed03a
@@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- ovirt_host_network - Fix type conversion (https://github.com/ansible/ansible/pull/47617).
|
||||
@@ -221,12 +221,12 @@ def get_bond_options(mode, usr_opts):
|
||||
)
|
||||
)
|
||||
|
||||
opts_dict = DEFAULT_MODE_OPTS.get(mode, {})
|
||||
opts_dict = DEFAULT_MODE_OPTS.get(str(mode), {})
|
||||
if usr_opts is not None:
|
||||
opts_dict.update(**usr_opts)
|
||||
|
||||
options.extend(
|
||||
[otypes.Option(name=opt, value=value)
|
||||
[otypes.Option(name=opt, value=str(value))
|
||||
for opt, value in six.iteritems(opts_dict)]
|
||||
)
|
||||
return options
|
||||
|
||||
Reference in New Issue
Block a user