8
8
import time
9
9
from typing import Callable , Dict
10
10
11
- import psycopg
11
+ import psycopg2
12
12
13
13
14
14
class ConnectionPoolFullError (Exception ):
@@ -23,7 +23,7 @@ def __str__(self):
23
23
class ConnectionInfo :
24
24
def __init__ (
25
25
self ,
26
- connection : psycopg . Connection ,
26
+ connection : psycopg2 . extensions . connection ,
27
27
deadline : int ,
28
28
active : bool ,
29
29
last_accessed : int ,
@@ -86,9 +86,9 @@ def _get_connection_raw(
86
86
dbname : str ,
87
87
ttl_ms : int ,
88
88
timeout : int = None ,
89
- startup_fn : Callable [[psycopg . Connection ], None ] = None ,
89
+ startup_fn : Callable [[psycopg2 . extensions . connection ], None ] = None ,
90
90
persistent : bool = False ,
91
- ) -> psycopg . Connection :
91
+ ) -> psycopg2 . extensions . connection :
92
92
"""
93
93
Return a connection from the pool.
94
94
Pass a function to startup_func if there is an action needed with the connection
@@ -117,7 +117,7 @@ def _get_connection_raw(
117
117
# if already in pool, retain persistence status
118
118
persistent = conn .persistent
119
119
120
- if db .info . status != psycopg . pq . ConnStatus . OK :
120
+ if db .status != psycopg2 . extensions . STATUS_READY :
121
121
# Some transaction went wrong and the connection is in an unhealthy state. Let's fix that
122
122
db .rollback ()
123
123
@@ -138,7 +138,7 @@ def get_connection(
138
138
dbname : str ,
139
139
ttl_ms : int ,
140
140
timeout : int = None ,
141
- startup_fn : Callable [[psycopg . Connection ], None ] = None ,
141
+ startup_fn : Callable [[psycopg2 . extensions . connection ], None ] = None ,
142
142
persistent : bool = False ,
143
143
):
144
144
"""
@@ -147,14 +147,12 @@ def get_connection(
147
147
make a new connection if the max_conn limit hasn't been reached.
148
148
Blocks until a connection can be added to the pool,
149
149
and optionally takes a timeout in seconds.
150
- Note that leaving a connection context here does NOT close the connection in psycopg ;
150
+ Note that leaving a connection context here does NOT close the connection in psycopg2 ;
151
151
connections must be manually closed by `close_all_connections()`.
152
152
"""
153
153
try :
154
154
with self ._mu :
155
- db = self ._get_connection_raw (
156
- dbname = dbname , ttl_ms = ttl_ms , timeout = timeout , startup_fn = startup_fn , persistent = persistent
157
- )
155
+ db = self ._get_connection_raw (dbname , ttl_ms , timeout , startup_fn , persistent )
158
156
yield db
159
157
finally :
160
158
with self ._mu :
0 commit comments