Repository: cxf Updated Branches: refs/heads/3.1.x-fixes 5bbe67eda -> d5a9d4cf4
[CXF-7312] Updating REQUEST_URI if needed Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/d5a9d4cf Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/d5a9d4cf Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/d5a9d4cf Branch: refs/heads/3.1.x-fixes Commit: d5a9d4cf4fb531075f9064c8f8aecaf50407aa96 Parents: 5bbe67e Author: Sergey Beryozkin <[email protected]> Authored: Mon Apr 3 13:07:36 2017 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Mon Apr 3 13:08:13 2017 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/cxf/clustering/FailoverTargetSelector.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/d5a9d4cf/rt/features/clustering/src/main/java/org/apache/cxf/clustering/FailoverTargetSelector.java ---------------------------------------------------------------------- diff --git a/rt/features/clustering/src/main/java/org/apache/cxf/clustering/FailoverTargetSelector.java b/rt/features/clustering/src/main/java/org/apache/cxf/clustering/FailoverTargetSelector.java index 5379416..c56b6bf 100644 --- a/rt/features/clustering/src/main/java/org/apache/cxf/clustering/FailoverTargetSelector.java +++ b/rt/features/clustering/src/main/java/org/apache/cxf/clustering/FailoverTargetSelector.java @@ -386,6 +386,7 @@ public class FailoverTargetSelector extends AbstractConduitSelector { endpointAddress = endpointAddress + (startsWithSlash ? pathInfo : (slash + pathInfo)); } message.put(Message.ENDPOINT_ADDRESS, endpointAddress); + message.put(Message.REQUEST_URI, endpointAddress); Exchange exchange = message.getExchange(); InvocationKey key = new InvocationKey(exchange);
