Skip to content

pullrequests Search Results · repo:MagicStack/asyncpg language:Python

Filter by

379 results
 (113 ms)

379 results

inMagicStack/asyncpg (press backspace or delete to remove)

Prior to this patch the state machine did not handle results arriving after cancellation. This add explicit support for that scenario by keeping track of the state prior to cancellation (cancelled_from_state), ...
  • mnbbrown
  • 1
  • Opened 
    4 days ago
  • #1283

Also, bump github actions while at it.
  • elprans
  • Opened 
    14 days ago
  • #1281

The bulk of the changes here is a rewrite of recordobj.c to use modern CPython API to properly isolate the module (PEP 489, PEP 573, PEP 630). This, along with Cython flags, enables support for safely ...
  • elprans
  • 20
  • Opened 
    17 days ago
  • #1279

If username in dsn contains @ (eg user@company.com:password@host.com:port) current logic will set dsn_hostspec as company.com:password@host.com:port but the correct value is host.com:port
  • karunpoudel-chr
  • 1
  • Opened 
    on Sep 24
  • #1275

Summary Adds pool_timeout parameter to Pool and create_pool() to prevent indefinite hangs in pool operations. Problem Pool operations could hang indefinitely, particularly during connection cleanup ...
  • ermakov-oleg
  • 1
  • Opened 
    on Sep 23
  • #1273

Related To #1268 Under heavy load, or when max_inactive_connection_lifetime exceeds the pool’s configured connection lifetime (like after inactivity for few minutes when lifetime is set to 300), the ...
  • mamfyou
  • 5
  • Opened 
    on Aug 18
  • #1271

Summary Improves type inference in async with pool.acquire() by: 1. Adding - connection.Connection return type to PoolAcquireContext.__aenter__ 2. Renaming internal attribute self.connection to self._conn ...
  • TerSent
  • Opened 
    on Aug 16
  • #1270

If _can_use_connection fails (say, because of an asyncio timeout), then we may have a full connection that has been created but would be leaked by this function. (note: _connect_addr takes care of cleaning ...
  • yuliy-openai
  • 1
  • Opened 
    on Aug 8
  • #1269

Address type introspection failures with QuestDB due to its lack of recursive CTE support. This primarily impacts types not built into asyncpg, such as float8[]. This commit: - Automatically registers ...
  • jerrinot
  • 2
  • Opened 
    on May 20
  • #1260