Skip to content

Commit

Permalink
Merge branch 'OCD-4765' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
tmy1313 committed Mar 5, 2025
2 parents 84b134f + 74dc35b commit 01a9114
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions chpl/chpl-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@
<version>${redisson.version}</version>
</dependency>

<dependency>
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>4.4.0</version>
Expand All @@ -383,7 +383,7 @@
<scope>provided</scope>
</dependency>

<!-- Sprng Doc (Swagger) -->
<!-- Spring Doc (Swagger) -->

<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -419,7 +419,7 @@
<version>0.4.0</version>
</dependency>

<!-- https://failsafe.dev/ -->
<!-- https://failsafe.dev/ -->
<dependency>
<groupId>dev.failsafe</groupId>
<artifactId>failsafe</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import gov.healthit.chpl.scheduler.job.urluptime.DatadogSyntheticsTestResultService;
import gov.healthit.chpl.scheduler.job.urluptime.DatadogSyntheticsTestService;
import gov.healthit.chpl.util.ErrorMessageUtil;
import gov.healthit.chpl.util.Util;
import gov.healthit.chpl.util.ValidationUtils;
import lombok.extern.log4j.Log4j2;

Expand All @@ -39,9 +38,9 @@ public class OnDemandUrlCheckerManager {
private static final String TYPE_VALUE_STATUS_CODE = "statusCode";
private static final String TYPE_VALUE_BODY = "body";
private static final String TYPE_VALUE_RESPONSE_TIME = "responseTime";
private List<String> errorsToIgnore = List.of("BODY_TOO_LARGE_TO_PROCESS");

private List<String> errorsToIgnore = List.of("BODY_TOO_LARGE_TO_PROCESS");

private DatadogSyntheticsTestService datadogSyntheticsTestService;
private DatadogSyntheticsTestResultService datadogSyntheticsTestResultService;
private ValidationUtils validationUtils;
Expand Down Expand Up @@ -78,7 +77,7 @@ public OnDemandUrlCheckerResponse checkUrl(String url) throws ApiException, Vali
} catch (Exception e) {
LOGGER.error("Failed to delete On Demand URL Check", e);
}

}
}

Expand Down

0 comments on commit 01a9114

Please sign in to comment.