aboutsummaryrefslogtreecommitdiffstats
path: root/examples/nonblocking.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nonblocking.py')
-rw-r--r--examples/nonblocking.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/nonblocking.py b/examples/nonblocking.py
index 4609f389..05a26921 100644
--- a/examples/nonblocking.py
+++ b/examples/nonblocking.py
@@ -1,9 +1,10 @@
import time
+import mitmproxy
from mitmproxy.script import concurrent
@concurrent # Remove this and see what happens
-def request(context, flow):
- context.log("handle request: %s%s" % (flow.request.host, flow.request.path))
+def request(flow):
+ mitmproxy.log("handle request: %s%s" % (flow.request.host, flow.request.path))
time.sleep(5)
- context.log("start request: %s%s" % (flow.request.host, flow.request.path))
+ mitmproxy.log("start request: %s%s" % (flow.request.host, flow.request.path))