Skip to content

Commit 45d9302

Browse files
authored
Merge pull request #989 from QualiSystems/develop
release 1.15.0
2 parents 62dae1c + 0ee82d5 commit 45d9302

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

package/cloudshell/cp/vcenter/common/vcenter/vmomi_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def connect(self, address, user, password, port=443):
7272
try:
7373
'#si = SmartConnect(host=address, user=user, pwd=password, port=port, sslContext=context)'
7474
si = self.pyvmomi_connect(host=address, user=user, pwd=password, port=port, sslContext=context)
75-
except ssl.SSLEOFError:
75+
except (ssl.SSLEOFError, vim.fault.HostConnectFault):
7676
context = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2)
7777
context.verify_mode = ssl.CERT_NONE
7878
si = self.pyvmomi_connect(host=address, user=user, pwd=password, port=port, sslContext=context)

package/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.14.2
1+
1.15.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
cloudshell-shell-core>=3.1.0,<3.2.0
2-
cloudshell-cp-vcenter>=1.14.0,<1.15.0
2+
cloudshell-cp-vcenter>=1.15.0,<1.16.0
33
cloudshell-cp-core>=1.0.0,<1.1.0

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.14.1.175
1+
1.15.0

0 commit comments

Comments
 (0)