We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f16419b commit f28fb26Copy full SHA for f28fb26
cloudendure/cloudendure.py
@@ -472,7 +472,9 @@ def get_machine_sync_details(self) -> Dict[Any]:
472
if "lastSeenDateTime" in _query_value["replicationInfo"].keys():
473
response_dict[machine_id]["last_seen_utc"] = _query_value["replicationInfo"]["lastSeenDateTime"]
474
if "rescannedStorageBytes" in _query_value["replicationInfo"].keys():
475
- response_dict[machine_id]["rescanned_storage_bytes"] = _query_value["replicationInfo"]["rescannedStorageBytes"]
+ response_dict[machine_id]["rescanned_storage_bytes"] = _query_value["replicationInfo"][
476
+ "rescannedStorageBytes"
477
+ ]
478
# Project is still printing to console as a convention; Emitting an
479
# output to stdout for interactive usage
480
return response_dict
0 commit comments