You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2023/10/05 09:43:14 UTC

[camel-quarkus] branch 3.2.x updated: Remove Google Cloud native build limitation for RunReachabilityHandlersConcurrently option

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

jamesnetherton pushed a commit to branch 3.2.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/3.2.x by this push:
     new 6d7d8cfd19 Remove Google Cloud native build limitation for RunReachabilityHandlersConcurrently option
6d7d8cfd19 is described below

commit 6d7d8cfd199dac66ae6355f9a649c73ae82a7be9
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Oct 5 09:21:05 2023 +0100

    Remove Google Cloud native build limitation for RunReachabilityHandlersConcurrently option
---
 .../ROOT/pages/reference/extensions/google-bigquery.adoc     | 12 ------------
 .../ROOT/pages/reference/extensions/google-pubsub.adoc       | 10 +---------
 .../ROOT/pages/reference/extensions/google-storage.adoc      | 12 ------------
 .../google-bigquery/runtime/src/main/doc/limitations.adoc    |  7 -------
 .../google-pubsub/runtime/src/main/doc/limitations.adoc      | 10 +---------
 .../google-storage/runtime/src/main/doc/limitations.adoc     |  7 -------
 6 files changed, 2 insertions(+), 56 deletions(-)

diff --git a/docs/modules/ROOT/pages/reference/extensions/google-bigquery.adoc b/docs/modules/ROOT/pages/reference/extensions/google-bigquery.adoc
index 8683a6765e..15697e0177 100644
--- a/docs/modules/ROOT/pages/reference/extensions/google-bigquery.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/google-bigquery.adoc
@@ -52,15 +52,3 @@ If you want to read SQL scripts from the classpath with `google-bigquery-sql` in
 then you will need to ensure that they are added to the native image via the `quarkus.native.resources.includes` configuration property.
 Please check https://quarkus.io/guides/building-native-image#quarkus-native-pkg-native-config_quarkus.native.resources.includes[Quarkus documentation] for more details.
 
-
-[id="extensions-google-bigquery-camel-quarkus-limitations"]
-== Camel Quarkus limitations
-
-Currently it needs a work around in native building to introduce a native-image.properties file containing the following line:
-[source,properties]
-----
-Args = -H:+RunReachabilityHandlersConcurrently
-----
-
-Also this file needs to be in your application, e.g. `src/main/resources/META-INF/native-image/native-image.properties`
-
diff --git a/docs/modules/ROOT/pages/reference/extensions/google-pubsub.adoc b/docs/modules/ROOT/pages/reference/extensions/google-pubsub.adoc
index 7e23da4574..bbca5811ea 100644
--- a/docs/modules/ROOT/pages/reference/extensions/google-pubsub.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/google-pubsub.adoc
@@ -52,14 +52,6 @@ By default, the Camel PubSub component uses JDK object serialization via `Object
 
 Since such serialization is not yet supported by GraalVM, this extension provides a custom Jackson based serializer to serialize complex message payloads as JSON.
 
-If your payload contains binary data, then you will need to handle that by creating a custom Jackson Serializer / Deserializer. Refer to the https://quarkus.io/guides/writing-extensions#customizing-jackson[Quarkus Jackson guide] for 
+If your payload contains binary data, then you will need to handle that by creating a custom Jackson Serializer / Deserializer. Refer to the https://quarkus.io/guides/writing-extensions#customizing-jackson[Quarkus Jackson guide] for
 information on how to do this.
 
-Currently it needs a work around in native building to introduce a native-image.properties file containing the following line:
-[source,properties]
-----
-Args = -H:+RunReachabilityHandlersConcurrently
-----
-
-Also this file needs to be in your application, e.g. `src/main/resources/META-INF/native-image/native-image.properties`
-
diff --git a/docs/modules/ROOT/pages/reference/extensions/google-storage.adoc b/docs/modules/ROOT/pages/reference/extensions/google-storage.adoc
index 453c55c802..67158f2a36 100644
--- a/docs/modules/ROOT/pages/reference/extensions/google-storage.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/google-storage.adoc
@@ -44,18 +44,6 @@ ifeval::[{doc-show-user-guide-link} == true]
 Check the xref:user-guide/index.adoc[User guide] for more information about writing Camel Quarkus applications.
 endif::[]
 
-[id="extensions-google-storage-camel-quarkus-limitations"]
-== Camel Quarkus limitations
-
-Currently it needs a work around in native building to introduce a native-image.properties file containing the following line:
-[source,properties]
-----
-Args = -H:+RunReachabilityHandlersConcurrently
-----
-
-Also this file needs to be in your application, e.g. `src/main/resources/META-INF/native-image/native-image.properties`
-
-
 [id="extensions-google-storage-ssl-in-native-mode"]
 == SSL in native mode
 
diff --git a/extensions/google-bigquery/runtime/src/main/doc/limitations.adoc b/extensions/google-bigquery/runtime/src/main/doc/limitations.adoc
deleted file mode 100644
index d409fbb62a..0000000000
--- a/extensions/google-bigquery/runtime/src/main/doc/limitations.adoc
+++ /dev/null
@@ -1,7 +0,0 @@
-Currently it needs a work around in native building to introduce a native-image.properties file containing the following line:
-[source,properties]
-----
-Args = -H:+RunReachabilityHandlersConcurrently
-----
-
-Also this file needs to be in your application, e.g. `src/main/resources/META-INF/native-image/native-image.properties`
diff --git a/extensions/google-pubsub/runtime/src/main/doc/limitations.adoc b/extensions/google-pubsub/runtime/src/main/doc/limitations.adoc
index 0feb98ccc4..41fea7fff1 100644
--- a/extensions/google-pubsub/runtime/src/main/doc/limitations.adoc
+++ b/extensions/google-pubsub/runtime/src/main/doc/limitations.adoc
@@ -2,13 +2,5 @@ By default, the Camel PubSub component uses JDK object serialization via `Object
 
 Since such serialization is not yet supported by GraalVM, this extension provides a custom Jackson based serializer to serialize complex message payloads as JSON.
 
-If your payload contains binary data, then you will need to handle that by creating a custom Jackson Serializer / Deserializer. Refer to the https://quarkus.io/guides/writing-extensions#customizing-jackson[Quarkus Jackson guide] for 
+If your payload contains binary data, then you will need to handle that by creating a custom Jackson Serializer / Deserializer. Refer to the https://quarkus.io/guides/writing-extensions#customizing-jackson[Quarkus Jackson guide] for
 information on how to do this.
-
-Currently it needs a work around in native building to introduce a native-image.properties file containing the following line:
-[source,properties]
-----
-Args = -H:+RunReachabilityHandlersConcurrently
-----
-
-Also this file needs to be in your application, e.g. `src/main/resources/META-INF/native-image/native-image.properties`
diff --git a/extensions/google-storage/runtime/src/main/doc/limitations.adoc b/extensions/google-storage/runtime/src/main/doc/limitations.adoc
deleted file mode 100644
index d409fbb62a..0000000000
--- a/extensions/google-storage/runtime/src/main/doc/limitations.adoc
+++ /dev/null
@@ -1,7 +0,0 @@
-Currently it needs a work around in native building to introduce a native-image.properties file containing the following line:
-[source,properties]
-----
-Args = -H:+RunReachabilityHandlersConcurrently
-----
-
-Also this file needs to be in your application, e.g. `src/main/resources/META-INF/native-image/native-image.properties`