This is an automated email from the ASF dual-hosted git repository. dmvolod pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 8a7d731 CAMEL-13059: camel-olingo2 assumes '/' at end of URI 8a7d731 is described below commit 8a7d731dd5b7850e738b5583e14920245a54bb04 Author: Dmitry Volodin <dmvo...@gmail.com> AuthorDate: Tue Jan 15 12:40:14 2019 +0300 CAMEL-13059: camel-olingo2 assumes '/' at end of URI --- .../org/apache/camel/component/olingo2/api/impl/Olingo2AppImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-olingo2/camel-olingo2-api/src/main/java/org/apache/camel/component/olingo2/api/impl/Olingo2AppImpl.java b/components/camel-olingo2/camel-olingo2-api/src/main/java/org/apache/camel/component/olingo2/api/impl/Olingo2AppImpl.java index eb1537e..adf7d99 100644 --- a/components/camel-olingo2/camel-olingo2-api/src/main/java/org/apache/camel/component/olingo2/api/impl/Olingo2AppImpl.java +++ b/components/camel-olingo2/camel-olingo2-api/src/main/java/org/apache/camel/component/olingo2/api/impl/Olingo2AppImpl.java @@ -1014,7 +1014,7 @@ public final class Olingo2AppImpl implements Olingo2App { final StringBuilder absolutUri = new StringBuilder(serviceUri).append(SEPARATOR).append(resourcePath); if (queryParams != null && !queryParams.isEmpty()) { - absolutUri.append("/?"); + absolutUri.append("?"); int nParams = queryParams.size(); int index = 0; for (Map.Entry<String, String> entry : queryParams.entrySet()) {