remove debug prints

This commit is contained in:
Thomas Kriechbaumer 2015-07-19 22:30:06 +02:00
parent 1a9c1a8c2d
commit 3cf6bd5fb6
2 changed files with 0 additions and 2 deletions

View File

@ -133,7 +133,6 @@ class PathodHandler(tcp.BaseHandler):
return None, None
if isinstance(req, http.ConnectRequest):
print([req.host, req.port, req.path])
return self.protocol.handle_http_connect([req.host, req.port, req.path], lg)
method = req.method

View File

@ -284,5 +284,4 @@ class TestHTTP2(tutils.DaemonTests):
def test_http2(self):
r, _ = self.pathoc(["GET:/"], ssl=True, use_http2=True)
print(r)
assert r[0].status_code == "800"