Skip to content

Commit

Permalink
Merge pull request #989 from QualiSystems/develop
Browse files Browse the repository at this point in the history
release 1.15.0
  • Loading branch information
Costya-Y authored Jun 4, 2020
2 parents 62dae1c + 0ee82d5 commit 45d9302
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def connect(self, address, user, password, port=443):
try:
'#si = SmartConnect(host=address, user=user, pwd=password, port=port, sslContext=context)'
si = self.pyvmomi_connect(host=address, user=user, pwd=password, port=port, sslContext=context)
except ssl.SSLEOFError:
except (ssl.SSLEOFError, vim.fault.HostConnectFault):
context = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2)
context.verify_mode = ssl.CERT_NONE
si = self.pyvmomi_connect(host=address, user=user, pwd=password, port=port, sslContext=context)
Expand Down
2 changes: 1 addition & 1 deletion package/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.14.2
1.15.0
2 changes: 1 addition & 1 deletion vcentershell_driver/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
cloudshell-shell-core>=3.1.0,<3.2.0
cloudshell-cp-vcenter>=1.14.0,<1.15.0
cloudshell-cp-vcenter>=1.15.0,<1.16.0
cloudshell-cp-core>=1.0.0,<1.1.0
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.14.1.175
1.15.0

0 comments on commit 45d9302

Please sign in to comment.