blob: 481c0407f2c3be4308050074c4cb85938b11d1d2 (
plain)
| 1
2
3
4
5
6
7
8
9
 | import time
from libmproxy.script import concurrent
@concurrent  # Remove this and see what happens
def request(context, flow):
    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)
 |