You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2021/08/26 15:59:01 UTC

[camel-website] branch main updated: More fix

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 035b52e  More fix
035b52e is described below

commit 035b52e93720896bc08c792ec51159a572b00466
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Aug 26 17:58:54 2021 +0200

    More fix
---
 content/blog/2021/08/DeployingCamelRouteInAWSLambda/index.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/blog/2021/08/DeployingCamelRouteInAWSLambda/index.md b/content/blog/2021/08/DeployingCamelRouteInAWSLambda/index.md
index 00ec1b7..56eb710 100644
--- a/content/blog/2021/08/DeployingCamelRouteInAWSLambda/index.md
+++ b/content/blog/2021/08/DeployingCamelRouteInAWSLambda/index.md
@@ -74,7 +74,7 @@ The application is now runnable using `java -jar target/quarkus-app/quarkus-run.
 
 It also generates a zip file target/function.zip. This zip file contains your java code along with the dependencies.
 
-##<a name="native"> </a>Building and Packaging the Java code as Quarkus Native executable
+##Building and Packaging the Java code as Quarkus Native executable
 
 If you want a lower memory footprint and faster initialization times for your lambda, you can compile your Java code to a native executable. Just make sure to rebuild your project with the -Pnative switch.
 > :warning: **Building Native Executables will take much longer time and depends on the underlying system**
@@ -108,7 +108,7 @@ If you want to learn more about building native executables, please consult http
 
 * sam.native.yaml - (optional) for use with sam cli and native local testing
 
-> :information_source: [Please click here to know more on how to use these scripts for automated deployment](https://quarkus.io/guides/amazon-lambda#extra-build-generated-files)
+> [Please click here to know more on how to use these scripts for automated deployment](https://quarkus.io/guides/amazon-lambda#extra-build-generated-files)
 
 ## Deploying the Quarkus JVM application to AWS Lambda via AWS Web Console