Skip to content

Commit

Permalink
IGNITE-17080 Fix netty buffer leak in InboundDecoderTest (apache#846)
Browse files Browse the repository at this point in the history
  • Loading branch information
SammyVimes authored Jun 3, 2022
1 parent 8e5410d commit e5d1eac
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@ public void testPartialReadWithReuseBuffer() throws Exception {

decoder.decode(ctx, buffer, list);

buffer.release();

assertEquals(1, list.size());

TestMessage actualMessage = (TestMessage) list.get(0);
Expand Down

0 comments on commit e5d1eac

Please sign in to comment.