You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@falcon.apache.org by aj...@apache.org on 2015/07/16 08:14:15 UTC

falcon git commit: FALCON-1282 Incorrect hdfs servers property for feed replication in secured environment. Contributed by Venkat Ranganathan.

Repository: falcon
Updated Branches:
  refs/heads/master 5f58c380b -> 9066eac27


FALCON-1282 Incorrect hdfs servers property for feed replication in secured environment. Contributed by Venkat Ranganathan.


Project: http://git-wip-us.apache.org/repos/asf/falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/9066eac2
Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/9066eac2
Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/9066eac2

Branch: refs/heads/master
Commit: 9066eac27897e845df867aa00545cc2f9101d1ef
Parents: 5f58c38
Author: Ajay Yadava <aj...@gmail.com>
Authored: Thu Jul 16 11:33:02 2015 +0530
Committer: Ajay Yadava <aj...@gmail.com>
Committed: Thu Jul 16 11:33:02 2015 +0530

----------------------------------------------------------------------
 CHANGES.txt                                                        | 2 ++
 .../apache/falcon/oozie/feed/FeedReplicationWorkflowBuilder.java   | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/falcon/blob/9066eac2/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 88fdfdd..8b96e78 100755
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -55,6 +55,8 @@ Trunk (Unreleased)
     (Suhas Vasu)
 
   BUG FIXES
+    FALCON-1282 Incorrect hdfs servers property for feed replication in secured environment(Venkat Ranganathan via Ajay Yadava)
+
     FALCON-1311 Instance dependency API produces inconsistent results in some scenarios(Pragya Mittal via Ajay Yadava)
 
     FALCON-1268 Instance Dependency API failure message is not intuitive in distributed mode (Ajay Yadava)

http://git-wip-us.apache.org/repos/asf/falcon/blob/9066eac2/oozie/src/main/java/org/apache/falcon/oozie/feed/FeedReplicationWorkflowBuilder.java
----------------------------------------------------------------------
diff --git a/oozie/src/main/java/org/apache/falcon/oozie/feed/FeedReplicationWorkflowBuilder.java b/oozie/src/main/java/org/apache/falcon/oozie/feed/FeedReplicationWorkflowBuilder.java
index fb41b96..4dc55ff 100644
--- a/oozie/src/main/java/org/apache/falcon/oozie/feed/FeedReplicationWorkflowBuilder.java
+++ b/oozie/src/main/java/org/apache/falcon/oozie/feed/FeedReplicationWorkflowBuilder.java
@@ -91,7 +91,7 @@ public abstract class FeedReplicationWorkflowBuilder extends OozieOrchestrationW
         if (isSecurityEnabled) {
             // this is to ensure that the delegation tokens are checked out for both clusters
             CONFIGURATION.Property property = new CONFIGURATION.Property();
-            property.setName("mapreduce.job.hdfs-servers");
+            property.setName("oozie.launcher.mapreduce.job.hdfs-servers");
             property.setValue(ClusterHelper.getReadOnlyStorageUrl(sourceCluster)
                     + "," + ClusterHelper.getStorageUrl(targetCluster));
             action.getJava().getConfiguration().getProperty().add(property);