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
In ErrorResponseDecoder::read() the temporary buffer is only 255 bytes long, which causes an ArrayIndexOutOfBoundsException whenever the error message is longer than that.
Unfortunately for me, the out of bounds exception was silently swallowed for some reason - in other words, no error signal from the Observable - which made this was pretty tricky to debug.
The text was updated successfully, but these errors were encountered:
In
ErrorResponseDecoder::read()
the temporary buffer is only 255 bytes long, which causes anArrayIndexOutOfBoundsException
whenever the error message is longer than that.postgres-async-driver/src/main/java/com/github/pgasync/impl/io/ErrorResponseDecoder.java
Line 55 in 71e761c
Unfortunately for me, the out of bounds exception was silently swallowed for some reason - in other words, no error signal from the Observable - which made this was pretty tricky to debug.
The text was updated successfully, but these errors were encountered: