aboutsummaryrefslogtreecommitdiffstats
path: root/examples/nonblocking.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nonblocking.py')
-rw-r--r--examples/nonblocking.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/examples/nonblocking.py b/examples/nonblocking.py
deleted file mode 100644
index 264a1fdb..00000000
--- a/examples/nonblocking.py
+++ /dev/null
@@ -1,11 +0,0 @@
-import time
-
-from mitmproxy.script import concurrent
-
-
-@concurrent # Remove this and see what happens
-def request(flow):
- # You don't want to use mitmproxy.ctx from a different thread
- print("handle request: %s%s" % (flow.request.host, flow.request.path))
- time.sleep(5)
- print("start request: %s%s" % (flow.request.host, flow.request.path))