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-spring-boot-examples.git
commit 266118878dfd0d081e371d36599c8a530e245cbb Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Feb 22 07:24:37 2022 +0100 Added an example of using AWS Secrets Manager Properties source in Camel Spring Boot --- .../main/java/org/apache/camel/example/springboot/aws/CamelRoute.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws-secrets-manager/src/main/java/org/apache/camel/example/springboot/aws/CamelRoute.java b/aws-secrets-manager/src/main/java/org/apache/camel/example/springboot/aws/CamelRoute.java index 1ad634d..0de8207 100644 --- a/aws-secrets-manager/src/main/java/org/apache/camel/example/springboot/aws/CamelRoute.java +++ b/aws-secrets-manager/src/main/java/org/apache/camel/example/springboot/aws/CamelRoute.java @@ -26,7 +26,7 @@ public class CamelRoute extends RouteBuilder { public void configure() throws Exception { from("timer://myTimer?fixedRate=true&period=10000") - .toD("https://finnhub.io/api/v1/quote?symbol={{stock}}&token={{aws:finnhub-token-3}}") + .toD("https://finnhub.io/api/v1/quote?symbol={{stock}}&token={{aws:finnhub-token}}") .log("${body}"); } }
