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
Although increase of block sizes is capped to 128k by ByteArrayBuilder, initial block size is not limited.
Databind used to try to allocate full block for base64 decoding, and due to miscalculation in an earlier version (up 2.9.x), was vastly overallocating, leading to potential failures.
But since builder is supposed to segment content anyway let's limit size of the initial block to strict per-block maximum: seems pointless not to do that.