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
{{ message }}
This repository has been archived by the owner on Mar 30, 2024. It is now read-only.
Libpq docs say connections should not be shared between threads.
Some example error messages:
message type 0x31 arrived from server while idle
message type 0x32 arrived from server while idle
message type 0x54 arrived from server while idle
PostgreSQL Error: Unknown
Also, the sleep(1) poll loop makes this useless for most things. It should use a select call because most of the time people are using notify for timely notification.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Libpq docs say connections should not be shared between threads.
Some example error messages:
message type 0x31 arrived from server while idle
message type 0x32 arrived from server while idle
message type 0x54 arrived from server while idle
PostgreSQL Error: Unknown
Also, the sleep(1) poll loop makes this useless for most things. It should use a select call because most of the time people are using notify for timely notification.
The text was updated successfully, but these errors were encountered: