Skip to content

Commit

Permalink
support lucene10
Browse files Browse the repository at this point in the history
Signed-off-by: Yupeng Fu <yupeng@uber.com>
  • Loading branch information
yupeng9 authored and andrross committed Jan 29, 2025
1 parent 8e1b8c3 commit b10ac20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void testKafkaIngestion() {
await().atMost(10, TimeUnit.SECONDS).untilAsserted(() -> {
refresh("test");
SearchResponse response = client().prepareSearch("test").setQuery(query).get();
assertThat(response.getHits().getTotalHits().value, is(1L));
assertThat(response.getHits().getTotalHits().value(), is(1L));
});

stopKafka();
Expand Down

0 comments on commit b10ac20

Please sign in to comment.