Skip to content
Open
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
8 changes: 6 additions & 2 deletions gcl_sdk/agents/universal/services/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,9 @@ def _actualize_capability(
collected_resources.append(resource)
except Exception:
LOG.exception(
"Error updating resource %s with uuid (%s)", capability, r.uuid
"Error updating resource %s with uuid (%s)",
capability,
r.uuid,
)

return collected_resources
Expand Down Expand Up @@ -282,7 +284,9 @@ def _actualize_resource_facts(
try:
self._orch_client.resources_update(kind, res_uuid, **resource)
except Exception:
LOG.exception("Error updating resource %s", uuid)
LOG.exception(
"Error updating resource %s with uuid (%s)", kind, res_uuid
)

def _actualize_facts(self, target_facts: dict, actual_facts: dict) -> None:
"""Actualize facts in Status API.
Expand Down