Skip to content

Commit 788255f

Browse files
committed
updates
1 parent c7ff46b commit 788255f

File tree

1 file changed

+2
-2
lines changed
  • test/external-modules/esql-heap-attack/src/javaRestTest/java/org/elasticsearch/xpack/esql/heap_attack

1 file changed

+2
-2
lines changed

test/external-modules/esql-heap-attack/src/javaRestTest/java/org/elasticsearch/xpack/esql/heap_attack/HeapAttackIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ public void testLookupExplosion() throws IOException {
636636

637637
public void testLookupExplosionManyMatches() throws IOException {
638638
assertCircuitBreaks(() -> {
639-
Map<?, ?> result = lookupExplosion(900, 10000);
639+
Map<?, ?> result = lookupExplosion(1500, 10000);
640640
logger.error("should have failed but got {}", result);
641641
});
642642
}
@@ -656,7 +656,7 @@ public void testLookupExplosionNoFetchManyMatches() throws IOException {
656656
}
657657

658658
public void testLookupExplosionBigString() throws IOException {
659-
int sensorDataCount = 250;
659+
int sensorDataCount = 150;
660660
int lookupEntries = 1;
661661
Map<?, ?> map = lookupExplosionBigString(sensorDataCount, lookupEntries);
662662
assertMap(map, matchesMap().extraOk().entry("values", List.of(List.of(sensorDataCount * lookupEntries))));

0 commit comments

Comments
 (0)