Skip to content

Commit 270ef43

Browse files
author
saxenakshitiz
committed
Increase number of retries for pinot to fix test failure
1 parent 57414cc commit 270ef43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

query-service/src/integrationTest/java/org/hypertrace/core/query/service/htqueries/HTPinotQueriesTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,12 +207,12 @@ private static boolean bootstrapConfig() throws Exception {
207207
.collect(Collectors.toList())
208208
.size()
209209
== 0
210-
&& retry++ < 5) {
210+
&& retry++ < 10) {
211211
Thread.sleep(2000);
212212
}
213213
channel.shutdown();
214214
bootstrapper.stop();
215-
return retry < 5;
215+
return retry < 10;
216216
}
217217

218218
private static boolean generateData() throws Exception {

0 commit comments

Comments
 (0)