Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
sfodagain committed Nov 23, 2024
1 parent 6062cc1 commit ab19921
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .builder/actions/tls_server_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,7 @@ def run(self, env):
print("Running openssl TLS server")


p1 = subprocess.Popen(["openssl.exe", "s_server",
"-accept", "127.0.0.1:59443",
"-key", "server.key",
"-cert", "server.crt",
"-CAfile", "server_chain.crt",
"-alpn", "x-amzn-mqtt-ca",
"-tls1_3", # Allow TLS 1.3 connections only
"-verify", "1", # Verify client's certificate
p1 = subprocess.Popen(["openssl.exe", "version",
], cwd=dir, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
time.sleep(1)
p1.poll()
Expand Down

0 comments on commit ab19921

Please sign in to comment.