Skip to content

Commit c71b6b6

Browse files
author
Tom Warnock
committed
fix case launch issue
1 parent 15daa49 commit c71b6b6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
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.2.4
11+
VERSION := v0.2.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/cloudendure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ def launch(self) -> Dict[str, Any]:
535535
for machine in json.loads(machines_response.text).get("items", []):
536536
source_props: Dict[str, Any] = machine.get("sourceProperties", {})
537537
machine_data: Dict[str, Any] = {}
538-
ce_name = source_props.get("name","NONE")
538+
ce_name = source_props.get("name", "NONE")
539539
if _machine == ce_name.upper():
540540
if machine.get("replica"):
541541
print("Target machine already launched")
@@ -565,7 +565,7 @@ def launch(self) -> Dict[str, Any]:
565565
print("ERROR: Launch target machine failed!")
566566
self.event_handler.add_event(Event.EVENT_FAILED, machine_name=_machine)
567567
else:
568-
#print(f"Machine: ({source_props['name']}) - Not a machine we want to launch...")
568+
# print(f"Machine: ({source_props['name']}) - Not a machine we want to launch...")
569569
self.event_handler.add_event(Event.EVENT_IGNORED, machine_name=_machine)
570570
return response_dict
571571

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cloudendure"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
description = "Python wrapper and CLI for CloudEndure"
55
authors = ["Mark Beacom <[email protected]>", "Tom Warnock <[email protected]>"]
66
maintainers = ["Evan Lucchesi <[email protected]>", "Nick Selpa <[email protected]>"]

0 commit comments

Comments
 (0)