This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 5c2d133e86274c7f8086dcd9438a5337ff83f553 Author: Andrea Cosentino <[email protected]> AuthorDate: Mon Dec 19 11:34:36 2022 +0100 CAMEL-18131 - camel-health - Add health checks for components that has extension for connectivity verification - ECS Signed-off-by: Andrea Cosentino <[email protected]> --- .../component/aws2/ecs/ECS2ClientHealthCheckProfileCredsTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-aws/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ClientHealthCheckProfileCredsTest.java b/components/camel-aws/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ClientHealthCheckProfileCredsTest.java index bf958493bd3..7cdc6718f93 100644 --- a/components/camel-aws/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ClientHealthCheckProfileCredsTest.java +++ b/components/camel-aws/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ClientHealthCheckProfileCredsTest.java @@ -17,6 +17,9 @@ package org.apache.camel.component.aws2.ecs; +import java.util.Collection; +import java.util.concurrent.TimeUnit; + import org.apache.camel.CamelContext; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.health.HealthCheck; @@ -29,9 +32,6 @@ import org.junit.jupiter.api.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import java.util.Collection; -import java.util.concurrent.TimeUnit; - import static org.awaitility.Awaitility.await; public class ECS2ClientHealthCheckProfileCredsTest extends CamelTestSupport {
