Skip to content

Commit 1d40063

Browse files
Respond to parse_linode_types(...) change in instance module (#680)
1 parent 34d0864 commit 1d40063

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

plugins/modules/instance.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,8 @@ def _update_config(
10891089
if key == "interfaces":
10901090
old_value = filter_null_values_recursive(
10911091
[
1092-
drop_empty_strings(v._serialize(), recursive=True)
1092+
# v is implicitly flattened to a dict in parse_linode_types(...)
1093+
drop_empty_strings(v, recursive=True)
10931094
for v in old_value
10941095
]
10951096
)

0 commit comments

Comments
 (0)