When the python application making use of app.run() gets interrupted using CTRL-C (or OS equivalent), it raises an exception, even though it is supposed to be handled in codebase.
What did you expect to see? Clean shutdown of the server. What did you see instead? This raises an asyncio.CancelledError exception in AioServer._serving_task_crash ...