Skip to content

Commit

Permalink
clean up failpoint server
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Dec 5, 2024
1 parent bf6a227 commit 3b15375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .evergreen/csfle/kms_failpoint_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __init__(self, server_address, Handler, use_tls=True):
cert_file = os.path.join(server_dir, "..", "x509gen", "server.pem")
ca_file = os.path.join(server_dir, "..", "x509gen", "ca.pem")

context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
context = ssl.SSLContext(ssl.PROTOCOL_TLS)
context.load_verify_locations(ca_file)
context.load_cert_chain(cert_file)

Expand Down

0 comments on commit 3b15375

Please sign in to comment.