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.git


The following commit(s) were added to refs/heads/main by this push:
     new b49d5f259bc Polished
b49d5f259bc is described below

commit b49d5f259bc462ac857f8d7373cb3cf88928941f
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Oct 2 11:24:38 2025 +0200

    Polished
---
 docs/main/modules/getting-started/pages/index.adoc | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/docs/main/modules/getting-started/pages/index.adoc 
b/docs/main/modules/getting-started/pages/index.adoc
index 6962e368ffa..d7604e1e229 100644
--- a/docs/main/modules/getting-started/pages/index.adoc
+++ b/docs/main/modules/getting-started/pages/index.adoc
@@ -93,7 +93,7 @@ To run the project you can run the following command:
 
 [source,bash]
 ----
-mvn camel:run -Dcamel.main.durationMaxMessages=2
+mvn camel:run
 ----
 
 After you run the command above, you should have the following messages:
@@ -103,7 +103,6 @@ After you run the command above, you should have the 
following messages:
 ...
 [che.camel.learn.MainApp.main()] MainSupport                    INFO  Apache 
Camel (Main) 3.18.4 is starting
 [che.camel.learn.MainApp.main()] BaseMainSupport                INFO  
Auto-configuration summary
-[che.camel.learn.MainApp.main()] BaseMainSupport                INFO      [JVM 
System Property]          camel.main.durationMaxMessages=2
 [che.camel.learn.MainApp.main()] XPathBuilder                   INFO  Created 
default XPathFactory 
com.sun.org.apache.xpath.internal.jaxp.XPathFactoryImpl@33cc7a16
 [che.camel.learn.MainApp.main()] FileEndpoint                   INFO  Endpoint 
is configured with noop=true so forcing endpoint to be idempotent as well
 [che.camel.learn.MainApp.main()] FileEndpoint                   INFO  Using 
default memory based idempotent repository with cache max size: 1000
@@ -114,18 +113,17 @@ After you run the command above, you should have the 
following messages:
 [che.camel.learn.MainApp.main()] MainSupport                    INFO  Waiting 
until complete: Duration max 2 messages processed
 [1) thread #1 - file://src/data] route1                         INFO  Other 
message
 [1) thread #1 - file://src/data] route1                         INFO  UK 
message
-[1) thread #1 - file://src/data] MainLifecycleStrategy          INFO  Duration 
max messages triggering shutdown of the JVM
-[ CamelMainShutdownCamelContext] AbstractCamelContext           INFO  Apache 
Camel 3.18.4 (camel-1) is shutting down (timeout:45s)
-[ CamelMainShutdownCamelContext] AbstractCamelContext           INFO  Routes 
stopped (stopped:1)
-[ CamelMainShutdownCamelContext] AbstractCamelContext           INFO      
Stopped route1 (file://src/data)
-[ CamelMainShutdownCamelContext] AbstractCamelContext           INFO  Apache 
Camel 3.18.4 (camel-1) shutdown in 7ms (uptime:1s JVM-uptime:2s)
-[che.camel.learn.MainApp.main()] MainSupport                    INFO  Apache 
Camel (Main) 3.18.4 shutdown
 ----
 
 If you can see an output like that on your terminal, it means the integration 
has run well.
 
 The integration you have just run consumed two files and copied them to a 
directory based on their contents. You can check it out yourself but looking at 
the `target/messages` directory within the project:
 
+[NOTE]
+====
+To stop the running Camel integration, you can press `ctrl` + `c` to terminate 
the Java JVM from the terminal.
+====
+
 [source,bash]
 ----
 find target/messages

Reply via email to