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 c273547 CAMEL-17056: camel-spring-boot-hazelcast-starter - Remove the
old customer code as its standard in camel-core now
c273547 is described below
commit c273547ce444f44b88f9750bf44a3490e639797b
Author: Claus Ibsen <[email protected]>
AuthorDate: Sat Oct 9 10:01:31 2021 +0200
CAMEL-17056: camel-spring-boot-hazelcast-starter - Remove the old customer
code as its standard in camel-core now
---
.../modules/ROOT/pages/camel-3x-upgrade-guide-3_13.adoc | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git
a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_13.adoc
b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_13.adoc
index 339e376..392e50d 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_13.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_13.adoc
@@ -12,12 +12,21 @@ Added method `getStartedEventNotifiers` to
`org.apache.camel.spi.ManagementStrat
Added method `scheduleQueue` to `org.apache.camel.spi.ReactiveExecutor`.
-== Using transactions
+=== Using transactions
The routing engine has been changed to route exchanges in a different order
when using transactions (`.transacted()`). When an `Exchange` is continued
routed a task is scheduled to the `ReactiveExecutor`. This fixed issues
with could lead to `StackOverflowException`.
+=== camel-hazelcast-starter
+The `camel-hazelcast-starter` for Spring Boot no longer has _customer_ auto
configuration options for all its components
+
+eg the following configuration keys have been removed
+
+- ...customizer.hazelcast-instance.enabled
+- ...customizer.hazelcast-instance.override
+
+Any Camel component can be customized by using the
`org.apache.camel.spi.ComponentCustomizer` SPI.