This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 7fbbb3a0ef9ea63abe52fb66cf6338ccc73c110b Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Mar 15 08:31:16 2021 +0100 CAMEL-16323 - Create a Camel-AWS-Secret-Manager component - getSecret operation --- .../integration/SecretsManagerGetSecretProducerIntegrationTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/camel-aws/camel-aws-secrets-manager/src/test/java/org/apache/camel/component/aws/secretsmanager/integration/SecretsManagerGetSecretProducerIntegrationTest.java b/components/camel-aws/camel-aws-secrets-manager/src/test/java/org/apache/camel/component/aws/secretsmanager/integration/SecretsManagerGetSecretProducerIntegrationTest.java index 2744ef3..e031c60 100644 --- a/components/camel-aws/camel-aws-secrets-manager/src/test/java/org/apache/camel/component/aws/secretsmanager/integration/SecretsManagerGetSecretProducerIntegrationTest.java +++ b/components/camel-aws/camel-aws-secrets-manager/src/test/java/org/apache/camel/component/aws/secretsmanager/integration/SecretsManagerGetSecretProducerIntegrationTest.java @@ -23,11 +23,12 @@ import org.apache.camel.builder.RouteBuilder; import org.apache.camel.component.aws.secretsmanager.SecretsManagerConstants; import org.apache.camel.component.mock.MockEndpoint; import org.apache.camel.test.junit5.CamelTestSupport; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertNotNull; -//@Disabled("This test must be manually started, you need to specify AWS Credentials") +@Disabled("This test must be manually started, you need to specify AWS Credentials") public class SecretsManagerGetSecretProducerIntegrationTest extends CamelTestSupport { @EndpointInject("mock:result")