mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-02 18:57:22 +00:00
9 lines
310 B
Python
9 lines
310 B
Python
import time
|
|
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))
|
|
time.sleep(5)
|
|
context.log("start request: %s%s" % (flow.request.host, flow.request.path))
|