diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2020-10-05 11:05:00 +0100 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2020-10-05 11:05:00 +0100 |
commit | 152ad526f491e70905e2fec3b7d33a89cf23813b (patch) | |
tree | 9dbd0b69beb14c456eb9fe9d49b003a35a65e959 /test/python/lifespan/failed | |
parent | 9d8d2c17585c149601855a09eba575640d156eae (diff) | |
download | unit-152ad526f491e70905e2fec3b7d33a89cf23813b.tar.gz unit-152ad526f491e70905e2fec3b7d33a89cf23813b.tar.bz2 |
Tests: added ASGI Lifespan.
Diffstat (limited to 'test/python/lifespan/failed')
-rw-r--r-- | test/python/lifespan/failed/asgi.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/python/lifespan/failed/asgi.py b/test/python/lifespan/failed/asgi.py new file mode 100644 index 00000000..8f315f70 --- /dev/null +++ b/test/python/lifespan/failed/asgi.py @@ -0,0 +1,11 @@ +async def application(scope, receive, send): + if scope['type'] == 'lifespan': + while True: + message = await receive() + if message['type'] == 'lifespan.startup': + await send({"type": "lifespan.startup.failed"}) + raise Exception('Exception blah') + + elif message['type'] == 'lifespan.shutdown': + await send({'type': 'lifespan.shutdown.complete'}) + return |