8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fda3a53 commit 96391ecCopy full SHA for 96391ec
tests/cluster/test_webhook.py
@@ -44,9 +44,8 @@ def setUp(self):
44
port_number = 7777
45
self.validation_server = HTTPServer(("", port_number), RequestHandler)
46
self.tunnel = subprocess.Popen(["jprq", "http", str(port_number)])
47
- print(self.tunnel.stderr.read())
48
- if self.tunnel.returncode:
49
- raise Exception("JPRQ failed to start")
+ print(self.tunnel.stderr)
+ print(self.tunnel.stdout)
50
self.tunnel_url = (
51
self.tunnel.stdout.readline().decode().strip()
52
) # Capture the URL
0 commit comments