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
Driver used to only accept chunks of size 32767. This was a limitation
on the total chunk size, which includes a 2 byte length header and
body. However, Bolt protocol specification allows chunks with body
of size 65535 (0xFFFF).
This commit fixes the problem by making `ChunkDecoder` accept chunks
of size 65535 + 2.
0 commit comments