File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ SHA1 := $$(git log -1 --pretty=%h)
88CURRENT_BRANCH := $$(git symbolic-ref -q --short HEAD )
99LATEST_TAG := ${REPO_NAME}:latest
1010GIT_TAG := ${REPO_NAME}:${SHA1}
11- VERSION := v0.2.4
11+ VERSION := v0.2.5
1212
1313info : # # Show information about the current git state.
1414 @echo " Github Project: https://github.com/${REPO_NAME} \nCurrent Branch: ${CURRENT_BRANCH} \nSHA1: ${SHA1} \n"
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " cloudendure"
3- version = " 0.2.4 "
3+ version = " 0.2.5 "
44description = " Python wrapper and CLI for CloudEndure"
55authors = [" Mark Beacom <mark@markbeacom.com>" , " Tom Warnock <twarnock@2ndwatch.com>" ]
66maintainers = [" Evan Lucchesi <evan@2ndwatch.com>" , " Nick Selpa <nselpa@2ndwatch.com>" ]
You can’t perform that action at this time.
0 commit comments