diff options
-rw-r--r-- | examples/redirect_requests.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/redirect_requests.py b/examples/redirect_requests.py index 8cde1bfd..bbb84e2f 100644 --- a/examples/redirect_requests.py +++ b/examples/redirect_requests.py @@ -11,8 +11,7 @@ def request(flow): # Method 1: Answer with a locally generated response if flow.request.pretty_host.endswith("example.com"): - resp = HTTPResponse.make(200, b"Hello World", {"Content-Type": "text/html"}) - flow.reply.send(resp) + flow.response = HTTPResponse.make(200, b"Hello World", {"Content-Type": "text/html"}) # Method 2: Redirect the request to a different server if flow.request.pretty_host.endswith("example.org"): |