Repository: falcon Updated Branches: refs/heads/master 4becb74bc -> 659f229f5
FALCON-1263 Fix waitTillInstanceReachState for EntityType.PROCESS. Contributed by Ruslan Ostafiychuk Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/659f229f Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/659f229f Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/659f229f Branch: refs/heads/master Commit: 659f229f55a1132d3a4ea82c7528759f2989ce03 Parents: 4becb74 Author: Ruslan Ostafiychuk <[email protected]> Authored: Tue Jun 9 14:31:58 2015 +0300 Committer: Ruslan Ostafiychuk <[email protected]> Committed: Tue Jun 9 14:44:14 2015 +0300 ---------------------------------------------------------------------- falcon-regression/CHANGES.txt | 4 ++-- .../org/apache/falcon/regression/core/util/InstanceUtil.java | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/659f229f/falcon-regression/CHANGES.txt ---------------------------------------------------------------------- diff --git a/falcon-regression/CHANGES.txt b/falcon-regression/CHANGES.txt index efd3caf..e043577 100644 --- a/falcon-regression/CHANGES.txt +++ b/falcon-regression/CHANGES.txt @@ -98,8 +98,6 @@ Trunk (Unreleased) FALCON-1227 Add logMover check in FeedReplication test(Pragya M via Samarth G) - FALCON-1258 Fix feed validity and fortify ELExpFutureAndLatestTest (Ruslan Ostafiychuk) - FALCON-1253 Fortify ExternalFSTest (Ruslan Ostafiychuk) FALCON-1243 Feed test update as per new UI changes (Namit Maheshwari) @@ -350,6 +348,8 @@ Trunk (Unreleased) FALCON-681 delete duplicate feed retention test from falcon regression (SamarthG) BUG FIXES + FALCON-1263 Fix waitTillInstanceReachState for EntityType.PROCESS (Ruslan Ostafiychuk) + FALCON-1258 Fix feed validity and fortify ELExpFutureAndLatestTest (Ruslan Ostafiychuk) FALCON-1257 Fix feedAclUpdate and processAclUpdate (Ruslan Ostafiychuk) http://git-wip-us.apache.org/repos/asf/falcon/blob/659f229f/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/util/InstanceUtil.java ---------------------------------------------------------------------- diff --git a/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/util/InstanceUtil.java b/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/util/InstanceUtil.java index 9aa3a0b..4550666 100644 --- a/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/util/InstanceUtil.java +++ b/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/util/InstanceUtil.java @@ -553,6 +553,7 @@ public final class InstanceUtil { cIds.add(coord.getId()); } coordId = OozieUtil.getMinId(cIds); + break; } else { for (CoordinatorJob coord : coords) { if (coord.getAppName().contains("FEED_REPLICATION")) {
