Skip to content

Commit a95a2a7

Browse files
author
Nick Selpa
committed
Linting applied
1 parent 66ef84e commit a95a2a7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cloudendure/cloudendure.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,11 @@ def _inspector(self, **kwargs):
508508
)
509509

510510
def _not_synced(self, machine) -> bool:
511-
if machine["backlogged_storage_bytes"] > 0 or machine["rescanned_storage_bytes"] > 0:
511+
if (
512+
machine["backlogged_storage_bytes"] > 0
513+
or machine["rescanned_storage_bytes"] > 0
514+
or machine["replicated_storage_bytes"] != machine["total_storage_bytes"]
515+
):
512516
return True
513517
else:
514518
return False

0 commit comments

Comments
 (0)