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 66ef84e commit a95a2a7Copy full SHA for a95a2a7
cloudendure/cloudendure.py
@@ -508,7 +508,11 @@ def _inspector(self, **kwargs):
508
)
509
510
def _not_synced(self, machine) -> bool:
511
- if machine["backlogged_storage_bytes"] > 0 or machine["rescanned_storage_bytes"] > 0:
+ 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
+ ):
516
return True
517
else:
518
return False
0 commit comments