We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89ca375 commit 5ebfd57Copy full SHA for 5ebfd57
kvirt/providers/vsphere/helpers.py
@@ -11,8 +11,9 @@ def waitForMe(t):
11
while t.info.state not in [vim.TaskInfo.State.success, vim.TaskInfo.State.error]:
12
time.sleep(1)
13
if t.info.state == vim.TaskInfo.State.error:
14
- error(t.info.description)
15
- error(t.info.error)
+ if t.info.description is not None:
+ error(t.info.description)
16
+ error(t.info.error.msg)
17
sys.exit(1)
18
19
openshift-ci-paramfiles/vsphere.yml
@@ -1,4 +1,4 @@
1
-client: sphere_karim
+client: mysphere
2
cluster: ci-vsphere
3
domain: karmalabs.corp
4
sslip: true
0 commit comments