Skip to content

Commit

Permalink
SCRUM-3669 do not suppress negated DAs on allele page
Browse files Browse the repository at this point in the history
  • Loading branch information
cmpich committed Feb 13, 2024
1 parent 6fb495f commit c5f47fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public JsonResultResponse<AlleleDiseaseAnnotationDocument> getDiseasePerAllele(S
throw new RestErrorException(message);
}
try {
JsonResultResponse<AlleleDiseaseAnnotationDocument> response = diseaseESService.getDiseaseAnnotations(alleleID, pagination, true, debug);
JsonResultResponse<AlleleDiseaseAnnotationDocument> response = diseaseESService.getDiseaseAnnotations(alleleID, pagination, false, debug);
response.setHttpServletRequest(null);
response.calculateRequestDuration(startDate);
return response;
Expand Down

0 comments on commit c5f47fe

Please sign in to comment.