Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Logging app initialization failure using config.log #218

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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 @@ -84,7 +84,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