This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 5737b2d1c206eea61dcdd9323c58a7917c6304f5 Author: James Netherton <[email protected]> AuthorDate: Wed Jun 23 13:28:44 2021 +0100 Fix first-steps xref in command-mode.adoc --- docs/modules/ROOT/pages/user-guide/command-mode.adoc | 2 +- docs/modules/ROOT/pages/user-guide/testing.adoc | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/user-guide/command-mode.adoc b/docs/modules/ROOT/pages/user-guide/command-mode.adoc index 6138046..ddf3589 100644 --- a/docs/modules/ROOT/pages/user-guide/command-mode.adoc +++ b/docs/modules/ROOT/pages/user-guide/command-mode.adoc @@ -162,7 +162,7 @@ $ java -Dgreeted.subject=Joe -jar target/*-runner.jar == Compiling the command line utility to a native executable -xref:first-steps.html#_native_mode[As usual with Camel Quarkus], the application can be compiled to native executable by activating the `native` profile. +xref:first-steps.adoc#_native_mode[As usual with Camel Quarkus], the application can be compiled to native executable by activating the `native` profile. GraalVM with `native-image` command installed and `GRAALVM_HOME` environment variable set is required for that, see https://quarkus.io/guides/building-native-image[Building a native executable] section of the Quarkus documentation. [source,shell] diff --git a/docs/modules/ROOT/pages/user-guide/testing.adoc b/docs/modules/ROOT/pages/user-guide/testing.adoc index 5312e57..bceb0bd 100644 --- a/docs/modules/ROOT/pages/user-guide/testing.adoc +++ b/docs/modules/ROOT/pages/user-guide/testing.adoc @@ -67,6 +67,10 @@ it even cannot be run by a JVM, because it is native code, not bytecode. On the other hand, there is no point in compiling tests to native code. So they are run using a traditional JVM. +An important consequence of this setup is that all communication between tests and the application +must go over network (HTTP/REST, or any other protocol your application speaks) +or through watching filesystem (log files, etc.) or any kind of interprocess communication. + == Testing with external services === Testcontainers
