Skip to content

Commit 37118b6

Browse files
committed
Merge branch '2.14' into 2.15
2 parents 91c2984 + 42f50af commit 37118b6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/java/com/fasterxml/jackson/databind/MapperFootprintTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,12 @@ public void testMapperFootprint() throws InterruptedException {
2626
GraphLayout mapperLayout = mapperLayoutA.totalSize() > mapperLayoutB.totalSize() ?
2727
mapperLayoutB : mapperLayoutA;
2828

29+
// 29-Nov-2022, tatu: Should be under 10k, but... flakiness.
2930
final int maxByteSize = 20_000;
3031
Assert.assertTrue(
31-
"ObjectMapper memory footprint exceeded limit ("+maxByteSize+"). Footprint details: " + mapperLayout.toFootprint(),
32+
"ObjectMapper memory footprint ("+mapperLayout.totalSize()
33+
+") exceeded limit ("+maxByteSize
34+
+"). Footprint details: " + mapperLayout.toFootprint(),
3235
mapperLayout.totalSize() < maxByteSize);
3336
}
3437
}

0 commit comments

Comments
 (0)