Skip to content

Commit f81d1be

Browse files
authored
Merge pull request #126 from 2ndWatch/fix/not_synced
Version bump to 0.3.5
2 parents 66ef84e + 1a5d6d0 commit f81d1be

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SHA1 := $$(git log -1 --pretty=%h)
88
CURRENT_BRANCH := $$(git symbolic-ref -q --short HEAD)
99
LATEST_TAG := ${REPO_NAME}:latest
1010
GIT_TAG := ${REPO_NAME}:${SHA1}
11-
VERSION := v0.3.4
11+
VERSION := v0.3.5
1212

1313
info: ## Show information about the current git state.
1414
@echo "Github Project: https://github.com/${REPO_NAME}\nCurrent Branch: ${CURRENT_BRANCH}\nSHA1: ${SHA1}\n"

cloudendure/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.4"
1+
__version__ = "0.3.5"

cloudendure/cloudendure.py

+5-1
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

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cloudendure"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
description = "Python wrapper and CLI for CloudEndure"
55
authors = ["Mark Beacom <mark@markbeacom.com>", "Tom Warnock <twarnock@2ndwatch.com>"]
66
maintainers = ["Evan Lucchesi <evan@2ndwatch.com>", "Nick Selpa <nselpa@2ndwatch.com>"]

0 commit comments

Comments
 (0)