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
2 changes: 1 addition & 1 deletion tests/test_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ async def worker():
await task

# Check that connection_lost has released the pool holder.
conn = await pool.acquire(timeout=0.1)
conn = await pool.acquire(timeout=POOL_NOMINAL_TIMEOUT)
await pool.release(conn)


Expand Down
Loading