-
We are seeing errors in our pgbouncer installation like this
As far as I can tell this comes when Byte1 in the message is 23 instead of a recognized type here according to the spec here So I was trying to find where this would happen in psycopg2 but couldn't find it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In psycopg2, nothing: psycopg doesn't send messages on wire, it only uses the libpq. I think that the libpq is not to blame either, because the byte1 it sends I think is always an ascii readable char, and 0x17 is not. So I think either it is some library used on connection such as gssapi or openssl, or, well, no idea. |
Beta Was this translation helpful? Give feedback.
In psycopg2, nothing: psycopg doesn't send messages on wire, it only uses the libpq.
I think that the libpq is not to blame either, because the byte1 it sends I think is always an ascii readable char, and 0x17 is not.
So I think either it is some library used on connection such as gssapi or openssl, or, well, no idea.