Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
sfodagain committed Nov 22, 2024
1 parent c416590 commit 221184a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .builder/actions/tls_server_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import sys
import subprocess
import atexit
import time


class TlsServerSetup(Builder.Action):
Expand Down Expand Up @@ -38,6 +39,9 @@ def run(self, env):
"-tls1_3", # Allow TLS 1.3 connections only
"-verify", "1" # Verify client's certificate
], cwd=dir, stdout=sys.stdout, stderr=sys.stdout)
time.sleep(1)
p1.poll()
print("Return code is {}".format(p1.returncode))

@atexit.register
def close_tls_server():
Expand Down

0 comments on commit 221184a

Please sign in to comment.