From c048ae1d5b652ad4778917e624ace217e1ecfd91 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Thu, 7 Jul 2016 18:37:33 -0700 Subject: remove context from all scripts --- examples/nonblocking.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'examples/nonblocking.py') 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)) -- cgit v1.2.3 From 5d2b7c52f9c33e84be5c4330b09b0f2a5ad869e2 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Fri, 8 Jul 2016 19:57:57 -0700 Subject: move script context to mitmproxy.ctx --- examples/nonblocking.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/nonblocking.py') diff --git a/examples/nonblocking.py b/examples/nonblocking.py index 05a26921..b81478df 100644 --- a/examples/nonblocking.py +++ b/examples/nonblocking.py @@ -5,6 +5,6 @@ from mitmproxy.script import concurrent @concurrent # Remove this and see what happens def request(flow): - mitmproxy.log("handle request: %s%s" % (flow.request.host, flow.request.path)) + mitmproxy.ctx.log("handle request: %s%s" % (flow.request.host, flow.request.path)) time.sleep(5) - mitmproxy.log("start request: %s%s" % (flow.request.host, flow.request.path)) + mitmproxy.ctx.log("start request: %s%s" % (flow.request.host, flow.request.path)) -- cgit v1.2.3