summaryrefslogtreecommitdiffhomepage
path: root/test/python/upstreams/2/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/python/upstreams/2/wsgi.py')
-rw-r--r--test/python/upstreams/2/wsgi.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/python/upstreams/2/wsgi.py b/test/python/upstreams/2/wsgi.py
deleted file mode 100644
index bb0ce797..00000000
--- a/test/python/upstreams/2/wsgi.py
+++ /dev/null
@@ -1,8 +0,0 @@
-import time
-
-def application(env, start_response):
- delay = int(env.get('HTTP_X_DELAY', 0))
-
- start_response('200', [('Content-Length', '0'), ('X-Upstream', '2')])
- time.sleep(delay)
- return []