Skip to content

Commit

Permalink
#334 - Re-enable CodeableConceptServiceIT
Browse files Browse the repository at this point in the history
- remove debug output
  • Loading branch information
michael-82 committed Dec 12, 2024
1 parent 2edd2db commit 8af09a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,6 @@ private SearchHits<CodeableConceptDocument> findByCodeOrDisplay(String keyword,
.withPageable(pageRequest)
.build();

log.info(query.getQuery().toString());

var result = operations.search(query, CodeableConceptDocument.class);
log.info(result.toString());
return result;
return operations.search(query, CodeableConceptDocument.class);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ static void setUp() throws InterruptedException {
.retrieve()
.toBodilessEntity()
.block();

// When running in github actions without a slight delay, the data might not be complete in the elastic search container (although a blocking call is used)
Thread.sleep(1000);
}

Expand Down

0 comments on commit 8af09a4

Please sign in to comment.