Skip to content

Commit

Permalink
Adjusting the ssl_version flag
Browse files Browse the repository at this point in the history
  • Loading branch information
ezturner committed Jul 24, 2019
1 parent 4ee20e8 commit 9282537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion travis-ci/live_ssl_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def do_GET(self):

server = HTTPServer(('localhost', PORT_NUMBER), myHandler)
server.socket = ssl.wrap_socket(server.socket,
ssl_version=ssl.PROTOCOL_TLS,
ssl_version=ssl.PROTOCOL_TLSv1_2,
keyfile=key_path,
certfile=cert_path,
ca_certs=ca_path,
Expand Down

0 comments on commit 9282537

Please sign in to comment.