This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-4.18.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 070233a8dd91dbdf498076de409774037ded234e Author: Ted Won <[email protected]> AuthorDate: Wed May 13 15:28:08 2026 +1000 Fix copy-paste error in camel-milo MiloClientConfiguration (#23174) MiloClientConfiguration used getMaxPendingPublishRequests() instead of getMaxResponseMessageSize() when configuring the OPC UA client's max response message size, applying the wrong value to the size limit. --- .../org/apache/camel/component/milo/client/MiloClientConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientConfiguration.java b/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientConfiguration.java index b8a292503258..1cafb8cd5f2c 100644 --- a/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientConfiguration.java +++ b/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientConfiguration.java @@ -461,7 +461,7 @@ public class MiloClientConfiguration implements Cloneable { } if (configuration.getMaxResponseMessageSize() != null) { - builder.setMaxResponseMessageSize(UInteger.valueOf(configuration.getMaxPendingPublishRequests())); + builder.setMaxResponseMessageSize(UInteger.valueOf(configuration.getMaxResponseMessageSize())); } if (configuration.getKeyStoreUrl() != null) {
