mirror of
https://github.com/sprockets/sprockets-postgres.git
synced 2024-12-28 11:24:11 +00:00
Actually wait while the first in reconnects
This commit is contained in:
parent
ecc070e974
commit
a1736bccae
1 changed files with 9 additions and 6 deletions
|
@ -344,9 +344,12 @@ class ApplicationMixin:
|
|||
message = str(err)
|
||||
if isinstance(err, psycopg2.OperationalError) and _attempt == 1:
|
||||
LOGGER.critical('Disconnected from Postgres: %s', err)
|
||||
retry = True
|
||||
if not self._postgres_reconnect.locked():
|
||||
async with self._postgres_reconnect:
|
||||
if await self._postgres_connect():
|
||||
retry = await self._postgres_connect()
|
||||
if retry:
|
||||
await self._postgres_connected.wait()
|
||||
async with self.postgres_connector(
|
||||
on_error, on_duration, timeout,
|
||||
_attempt + 1) as connector:
|
||||
|
|
Loading…
Reference in a new issue