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