Skip to content

Commit 9b4b71c

Browse files
authored
hotfix/fix-ci-errors (#8)
Fixed files to work with latest CI updates
2 parents 084bc91 + a27d10d commit 9b4b71c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v1.0.1
4+
5+
* Updated files to work with latest CI updates
6+
37
## v1.0.0
48

59
* Drop Python 2.7 support

actions/wait_for_server_operation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ class WaitForCAASServerOperationAction(actions.BaseAction):
1111
def run(self, region, id):
1212
node = self.getNode(region, id)
1313
if node is not None:
14-
while(node.extra['status'].action == 'None'):
14+
while (node.extra['status'].action == 'None'):
1515
sleep(5)
1616
node = self.getNode(region, id)
1717
else:
18-
raise "VM with the name doesn't exist"
18+
raise Exception("VM with the name doesn't exist")
1919

2020
def getNode(self, region, id):
2121
driver = self._get_compute_driver(region)

pack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
- cloud
77
- load balancers
88
- dimension data
9-
version: 1.0.0
9+
version: 1.0.1
1010
author : Anthony Shaw
1111
1212
python_versions:

0 commit comments

Comments
 (0)