summaryrefslogtreecommitdiffhomepage
path: root/test/python/restart/v2.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/python/restart/v2.py')
-rw-r--r--test/python/restart/v2.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/python/restart/v2.py b/test/python/restart/v2.py
new file mode 100644
index 00000000..59e3d30f
--- /dev/null
+++ b/test/python/restart/v2.py
@@ -0,0 +1,7 @@
+import os
+
+def application(environ, start_response):
+ body = "v2".encode()
+
+ start_response('200', [('Content-Length', str(len(body)))])
+ return [body]