You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reconnect the database after any failed worker cycle
A failed cycle can leave the connection in a state it never recovers from on
its own. When a transaction is aborted and the rollback that follows also
fails, the connection throws away its own transaction bookkeeping while the
driver keeps considering a transaction open. Every later attempt to begin one
is then rejected by the driver with "There is already an active transaction",
which is not a lost connection, so the worker held on to the connection and
failed every single cycle until it was restarted by hand.
0 commit comments