aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-12-17 10:34:53 +0100
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-12-17 10:34:53 +0100
commit3eac72f1a317f0890f74cd26e5ab955dbc2303f2 (patch)
tree77ce43c412c781702234b166bc00efbae0137176
parentc4929bbc190a52e4ac0f38492e085338b3e5827d (diff)
downloadmitmproxy-3eac72f1a317f0890f74cd26e5ab955dbc2303f2.tar.gz
mitmproxy-3eac72f1a317f0890f74cd26e5ab955dbc2303f2.tar.bz2
mitmproxy-3eac72f1a317f0890f74cd26e5ab955dbc2303f2.zip
http2: faster timeouts
-rw-r--r--mitmproxy/proxy/protocol/http2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mitmproxy/proxy/protocol/http2.py b/mitmproxy/proxy/protocol/http2.py
index 41707096..45e55955 100644
--- a/mitmproxy/proxy/protocol/http2.py
+++ b/mitmproxy/proxy/protocol/http2.py
@@ -328,7 +328,7 @@ class Http2Layer(base.Layer):
try:
while True:
- r = tcp.ssl_read_select(conns, 1)
+ r = tcp.ssl_read_select(conns, 0.1)
for conn in r:
source_conn = self.client_conn if conn == self.client_conn.connection else self.server_conn
other_conn = self.server_conn if conn == self.client_conn.connection else self.client_conn
@@ -580,7 +580,7 @@ class Http2SingleStreamLayer(httpbase._HttpTransmissionLayer, basethread.BaseThr
def read_response_body(self, request, response):
while True:
try:
- yield self.response_data_queue.get(timeout=1)
+ yield self.response_data_queue.get(timeout=0.1)
except queue.Empty: # pragma: no cover
pass
if self.response_data_finished.is_set():