mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
ovirt_host_network: Fix type conversion (#47617)
Signed-off-by: Ondra Machacek <omachace@redhat.com>
This commit is contained in:
parent
d3fe6c01f2
commit
36b0aed03a
2 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue