Skip to content

Commit b64987b

Browse files
author
Tomer Admon
authored
Merge pull request #968 from QualiSystems/support_multiple_TLS_versions
update base TLS version
2 parents 202321b + 061d381 commit b64987b

1 file changed

Lines changed: 1 addition & 1 deletion

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
@@ -64,7 +64,7 @@ def connect(self, address, user, password, port=443):
6464
context = None
6565
import ssl
6666
if hasattr(ssl, 'SSLContext'):
67-
context = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2)
67+
context = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
6868
context.verify_mode = ssl.CERT_NONE
6969

7070
try:

0 commit comments

Comments
 (0)