Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ async def acquire_context(
if conn:
try:
ctx_id, waiter = await conn.acquire_context(emitter, opts, remaining_timeout)
except Exception:
except BaseException:
# Release reservation since we didn't get a context
conn.release_reservation()
# Remove failed new connection from pool
Expand Down
Loading