Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/hypercorn/asyncio/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ def _signal_handler(*_: Any) -> None: # noqa: N803
if lifespan_task.done():
exception = lifespan_task.exception()
if exception is not None:
raise exception
await config.log.exception(
"Error initializing ASGI app",
exc_info=(type(exception), exception, exception .__traceback__)
)
exit(1)

if sockets is None:
sockets = config.create_sockets()
Expand Down