You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2022/12/19 10:35:11 UTC

[camel] 08/08: CAMEL-18131 - camel-health - Add health checks for components that has extension for connectivity verification - ECS

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 <an...@gmail.com>
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 <an...@gmail.com>
---
 .../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 {