Repository: incubator-falcon Updated Branches: refs/heads/master 8cbd38551 -> 5acc8ad51
FALCON-865 Rest end-point entities/summary has changed. Contributed by Ruslan Ostafiychuk Project: http://git-wip-us.apache.org/repos/asf/incubator-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-falcon/commit/5acc8ad5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-falcon/tree/5acc8ad5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-falcon/diff/5acc8ad5 Branch: refs/heads/master Commit: 5acc8ad516c9f22275eb7b7c82d8723606251623 Parents: 8cbd385 Author: Ruslan Ostafiychuk <rostafiyc...@apache.org> Authored: Wed Nov 5 19:57:52 2014 +0200 Committer: Ruslan Ostafiychuk <rostafiyc...@apache.org> Committed: Thu Nov 6 15:38:01 2014 +0200 ---------------------------------------------------------------------- falcon-regression/CHANGES.txt | 2 ++ .../falcon/regression/core/interfaces/IEntityManagerHelper.java | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/5acc8ad5/falcon-regression/CHANGES.txt ---------------------------------------------------------------------- diff --git a/falcon-regression/CHANGES.txt b/falcon-regression/CHANGES.txt index cfd15aa..96bed6a 100644 --- a/falcon-regression/CHANGES.txt +++ b/falcon-regression/CHANGES.txt @@ -137,6 +137,8 @@ Trunk (Unreleased) FALCON-681 delete duplicate feed retention test from falcon regression (SamarthG) BUG FIXES + FALCON-865 Rest end-point entities/summary has changed (Ruslan Ostafiychuk) + FALCON-867 In process ACL tests process validity needs to be in future (Raghav Kumar Gautam) http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/5acc8ad5/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/interfaces/IEntityManagerHelper.java ---------------------------------------------------------------------- diff --git a/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/interfaces/IEntityManagerHelper.java b/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/interfaces/IEntityManagerHelper.java index e1d808e..49202bc 100644 --- a/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/interfaces/IEntityManagerHelper.java +++ b/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/interfaces/IEntityManagerHelper.java @@ -579,9 +579,9 @@ public abstract class IEntityManagerHelper { public ServiceResponse getEntitySummary(String clusterName, String params) throws AuthenticationException, IOException, URISyntaxException { String url = createUrl(this.hostname + URLS.ENTITY_SUMMARY.getValue(), - getEntityType(), clusterName); + getEntityType()) +"?cluster=" + clusterName; if (StringUtils.isNotEmpty(params)) { - url += "?" + params; + url += "&" + params; } return Util.sendRequest(url, "get", null, null); }