Skip to content

Commit

Permalink
add print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
chejennifer committed Jul 15, 2024
1 parent c762f83 commit aa20c66
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions shared/lib/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ def setUpClass(cls):
cls.web_proc = multiprocessing.Process(target=start_web_server,
args=(cls.web_port, nl_port))
cls.web_proc.start()
print("server started")
break
except Exception as e:
print("exception caught in test server")
Expand All @@ -101,6 +102,7 @@ def setUpClass(cls):
print(skip_ports)
continue
else:
print("raising exception")
raise e
libutil.check_backend_ready([f'http://127.0.0.1:{cls.web_port}/healthz'])

Expand Down

0 comments on commit aa20c66

Please sign in to comment.