Skip to content

return in finally swallows exceptions #3005

@iritkatriel

Description

@iritkatriel

Is there an existing issue for this?

  • I have searched the existing issues

Describe the bug

In https://github.com/sanic-org/sanic/blob/main/sanic/server/websockets/impl.py#L437
and

there is a return statement in a finally block, which would swallow any in-flight exception.

This means that if an exception other than asyncio.CancelledError (including a BaseException such as KeyboardInterrupt) is raised from the try body, it will not propagate on as expected if this return statement is executed.

See also https://docs.python.org/3/tutorial/errors.html#defining-clean-up-actions.

Code snippet

No response

Expected Behavior

No response

How do you run Sanic?

Sanic CLI

Operating System

Linux

Sanic Version

main branch

Additional context

No response

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions