Skip to content

Commit

Permalink
IGNITE-21056 Use thread local buffer for encrypted dump (#11086)
Browse files Browse the repository at this point in the history
  • Loading branch information
yurinaryshkin authored Dec 12, 2023
1 parent 6cffdef commit b3fe55e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public ByteBuffer writeToBuffer(
ByteBuffer encBuf = threadLocalBuffer(encThLocBufs);

if (encBuf.capacity() < encDataSz)
encBuf = enlargeThreadLocalBuffer(thLocBufs, encDataSz);
encBuf = enlargeThreadLocalBuffer(encThLocBufs, encDataSz);
else
encBuf.rewind().limit(encDataSz);

Expand Down

0 comments on commit b3fe55e

Please sign in to comment.