mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
af1a4ffdcd
This results in a 30% improvement in our core request throughput. Fixes #3102
13 lines
396 B
Python
13 lines
396 B
Python
import time
|
|
|
|
from mitmproxy.script import concurrent
|
|
from mitmproxy import ctx
|
|
|
|
|
|
@concurrent # Remove this and see what happens
|
|
def request(flow):
|
|
# You don't want to use mitmproxy.ctx from a different thread
|
|
ctx.log.info("handle request: %s%s" % (flow.request.host, flow.request.path))
|
|
time.sleep(5)
|
|
ctx.log.info("start request: %s%s" % (flow.request.host, flow.request.path))
|