This is an automated email from the ASF dual-hosted git repository. zhfeng pushed a commit to branch 2.13.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/2.13.x by this push: new 9f1a5ffaf5 Add a limitation doc about pooling support for camel-quarkus-amqp (#4809) 9f1a5ffaf5 is described below commit 9f1a5ffaf5fcfeeefea5bb310d286f8b314df932 Author: Zheng Feng <zh.f...@gmail.com> AuthorDate: Thu Apr 20 17:56:34 2023 +0800 Add a limitation doc about pooling support for camel-quarkus-amqp (#4809) --- docs/modules/ROOT/pages/reference/extensions/amqp.adoc | 9 +++++++++ extensions/amqp/runtime/src/main/doc/limitations.adoc | 3 +++ 2 files changed, 12 insertions(+) diff --git a/docs/modules/ROOT/pages/reference/extensions/amqp.adoc b/docs/modules/ROOT/pages/reference/extensions/amqp.adoc index 6b74401fe8..54b59017aa 100644 --- a/docs/modules/ROOT/pages/reference/extensions/amqp.adoc +++ b/docs/modules/ROOT/pages/reference/extensions/amqp.adoc @@ -60,6 +60,15 @@ When sending JMS message payloads as `javax.jms.ObjectMessage`, you must annotat Note that this extension automatically sets `quarkus.camel.native.reflection.serialization-enabled = true` for you. Refer to the xref:user-guide/native-mode.adoc#serialization[native mode user guide] for more information. +[id="extensions-amqp-camel-quarkus-limitations"] +== Camel Quarkus limitations + +[id="extensions-amqp-limitations-connection-pooling"] +=== Connection Pooling + +JMS connection pooling isn't supported yet since there is still an open https://github.com/amqphub/quarkus-qpid-jms/issues/22[issue] with quarkus-qpid-jms. + + [id="extensions-amqp-transferexception-option-in-native-mode"] == transferException option in native mode diff --git a/extensions/amqp/runtime/src/main/doc/limitations.adoc b/extensions/amqp/runtime/src/main/doc/limitations.adoc new file mode 100644 index 0000000000..f85e704485 --- /dev/null +++ b/extensions/amqp/runtime/src/main/doc/limitations.adoc @@ -0,0 +1,3 @@ +=== Connection Pooling + +JMS connection pooling isn't supported yet since there is still an open https://github.com/amqphub/quarkus-qpid-jms/issues/22[issue] with quarkus-qpid-jms.