You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2017/06/10 07:11:33 UTC

[1/3] camel git commit: REUSE_ADDRESSES options is set using the value for TCP_NO_DELAY intead of REUSE_ADDRESSES

Repository: camel
Updated Branches:
  refs/heads/camel-2.18.x b21d06acd -> a03e6c7a3
  refs/heads/camel-2.19.x 3990ebe4b -> a49e91c41
  refs/heads/master 46bf84321 -> ba92e5dd6


REUSE_ADDRESSES options is set using the value for TCP_NO_DELAY intead of REUSE_ADDRESSES


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/ba92e5dd
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/ba92e5dd
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/ba92e5dd

Branch: refs/heads/master
Commit: ba92e5dd60e6bd899f6c54ef27391792ed509de6
Parents: 46bf843
Author: Bhun Kho <bh...@ictu.nl>
Authored: Sat Jun 10 08:42:51 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Sat Jun 10 09:10:21 2017 +0200

----------------------------------------------------------------------
 .../java/org/apache/camel/component/undertow/UndertowEndpoint.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/ba92e5dd/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
index 32a6492..d4a39ff 100644
--- a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
+++ b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
@@ -367,7 +367,7 @@ public class UndertowEndpoint extends DefaultEndpoint implements AsyncEndpoint,
         if (reuseAddresses != null && !optionMap.contains(Options.REUSE_ADDRESSES)) {
             // rebuild map
             OptionMap.Builder builder = OptionMap.builder();
-            builder.addAll(optionMap).set(Options.REUSE_ADDRESSES, tcpNoDelay);
+            builder.addAll(optionMap).set(Options.REUSE_ADDRESSES, reuseAddresses);
             optionMap = builder.getMap();
         }
     }


[3/3] camel git commit: REUSE_ADDRESSES options is set using the value for TCP_NO_DELAY intead of REUSE_ADDRESSES

Posted by da...@apache.org.
REUSE_ADDRESSES options is set using the value for TCP_NO_DELAY intead of REUSE_ADDRESSES


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a03e6c7a
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a03e6c7a
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a03e6c7a

Branch: refs/heads/camel-2.18.x
Commit: a03e6c7a3410bf80479856924cb93c9a217ba1d6
Parents: b21d06a
Author: Bhun Kho <bh...@ictu.nl>
Authored: Sat Jun 10 08:42:51 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Sat Jun 10 09:11:25 2017 +0200

----------------------------------------------------------------------
 .../java/org/apache/camel/component/undertow/UndertowEndpoint.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/a03e6c7a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
index 9a36978..090b3a1 100644
--- a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
+++ b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
@@ -343,7 +343,7 @@ public class UndertowEndpoint extends DefaultEndpoint implements AsyncEndpoint,
         if (reuseAddresses != null && !optionMap.contains(Options.REUSE_ADDRESSES)) {
             // rebuild map
             OptionMap.Builder builder = OptionMap.builder();
-            builder.addAll(optionMap).set(Options.REUSE_ADDRESSES, tcpNoDelay);
+            builder.addAll(optionMap).set(Options.REUSE_ADDRESSES, reuseAddresses);
             optionMap = builder.getMap();
         }
     }


[2/3] camel git commit: REUSE_ADDRESSES options is set using the value for TCP_NO_DELAY intead of REUSE_ADDRESSES

Posted by da...@apache.org.
REUSE_ADDRESSES options is set using the value for TCP_NO_DELAY intead of REUSE_ADDRESSES


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a49e91c4
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a49e91c4
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a49e91c4

Branch: refs/heads/camel-2.19.x
Commit: a49e91c417246c9b732977d27854bd7c60db99ea
Parents: 3990ebe
Author: Bhun Kho <bh...@ictu.nl>
Authored: Sat Jun 10 08:42:51 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Sat Jun 10 09:11:08 2017 +0200

----------------------------------------------------------------------
 .../java/org/apache/camel/component/undertow/UndertowEndpoint.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/a49e91c4/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
index 2b4e75a..53a6bc0 100644
--- a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
+++ b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
@@ -367,7 +367,7 @@ public class UndertowEndpoint extends DefaultEndpoint implements AsyncEndpoint,
         if (reuseAddresses != null && !optionMap.contains(Options.REUSE_ADDRESSES)) {
             // rebuild map
             OptionMap.Builder builder = OptionMap.builder();
-            builder.addAll(optionMap).set(Options.REUSE_ADDRESSES, tcpNoDelay);
+            builder.addAll(optionMap).set(Options.REUSE_ADDRESSES, reuseAddresses);
             optionMap = builder.getMap();
         }
     }