Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog/66.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix behaviour of attribute value coming from resource pools for async client
2 changes: 1 addition & 1 deletion infrahub_sdk/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -1341,7 +1341,7 @@
continue

# Process allocated resource from a pool and update attribute
attr.value = object_response[attr_name]
attr.value = object_response[attr_name]["value"]

Check warning on line 1344 in infrahub_sdk/node.py

View check run for this annotation

Codecov / codecov/patch

infrahub_sdk/node.py#L1344

Added line #L1344 was not covered by tests

for rel_name in self._relationships:
rel = getattr(self, rel_name)
Expand Down
Loading