Repository: incubator-falcon Updated Branches: refs/heads/master 38f545000 -> 89a2295ec
FALCON-883 Fixing testFeedCustomFilter(). Contributed by Paul Isaychuk Project: http://git-wip-us.apache.org/repos/asf/incubator-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-falcon/commit/89a2295e Tree: http://git-wip-us.apache.org/repos/asf/incubator-falcon/tree/89a2295e Diff: http://git-wip-us.apache.org/repos/asf/incubator-falcon/diff/89a2295e Branch: refs/heads/master Commit: 89a2295ec0026d1befc76291a2195486a6eeaf23 Parents: 38f5450 Author: Raghav Kumar Gautam <rag...@apache.org> Authored: Tue Nov 11 11:27:05 2014 -0800 Committer: Raghav Kumar Gautam <rag...@apache.org> Committed: Tue Nov 11 11:27:05 2014 -0800 ---------------------------------------------------------------------- falcon-regression/CHANGES.txt | 1 + .../apache/falcon/regression/lineage/ListFeedInstancesTest.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/89a2295e/falcon-regression/CHANGES.txt ---------------------------------------------------------------------- diff --git a/falcon-regression/CHANGES.txt b/falcon-regression/CHANGES.txt index e4153a1..f7abf2b 100644 --- a/falcon-regression/CHANGES.txt +++ b/falcon-regression/CHANGES.txt @@ -137,6 +137,7 @@ Trunk (Unreleased) FALCON-681 delete duplicate feed retention test from falcon regression (SamarthG) BUG FIXES + FALCON-883 Fixing testFeedCustomFilter() (Paul Isaychuk) FALCON-879 Update ACL tests according to info provided in FALCON-864 (Raghav Kumar Gautam) http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/89a2295e/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/lineage/ListFeedInstancesTest.java ---------------------------------------------------------------------- diff --git a/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/lineage/ListFeedInstancesTest.java b/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/lineage/ListFeedInstancesTest.java index 76735b9..4550320 100644 --- a/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/lineage/ListFeedInstancesTest.java +++ b/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/lineage/ListFeedInstancesTest.java @@ -448,7 +448,7 @@ public class ListFeedInstancesTest extends BaseTestClass { //missing the 1st, 11th, 12th instance, all instances which have progressed should be present: //5 killed + 1 suspended, but numResults=5, so expecting 1 suspended and 4 killed instances. params = "start=" + TimeUtil.addMinsToTime(startTime, 2) + "&filterBy=SOURCECLUSTER:" - + sourceCluster + "&offset=2&numResults=5"; + + sourceCluster + "&offset=1&numResults=5"; r = prism.getFeedHelper().listInstances(feedName, params, null); InstanceUtil.validateResponse(r, 5, 0, 1, 0, 4); }