You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by va...@apache.org on 2017/08/22 13:34:49 UTC

[14/51] [abbrv] hadoop git commit: Addendum for YARN-6064. Support fromId for flowRuns and flow/flowRun apps REST API's

Addendum for YARN-6064. Support fromId for flowRuns and flow/flowRun apps REST API's


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

Branch: refs/heads/YARN-5355
Commit: a3040751693df0d4aa11fbe38adb3b8f458372c6
Parents: 800fb4e
Author: Varun Saxena <va...@apache.org>
Authored: Thu Jan 19 10:15:28 2017 +0530
Committer: Varun Saxena <va...@apache.org>
Committed: Tue Aug 22 19:03:02 2017 +0530

----------------------------------------------------------------------
 .../storage/reader/ApplicationEntityReader.java                | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/a3040751/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice-hbase/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/reader/ApplicationEntityReader.java
----------------------------------------------------------------------
diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice-hbase/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/reader/ApplicationEntityReader.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice-hbase/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/reader/ApplicationEntityReader.java
index 8a331c3..4e8286d 100644
--- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice-hbase/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/reader/ApplicationEntityReader.java
+++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice-hbase/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/reader/ApplicationEntityReader.java
@@ -375,9 +375,9 @@ class ApplicationEntityReader extends GenericEntityReader {
       Long flowRunId = context.getFlowRunId();
       if (flowRunId == null) {
         AppToFlowRowKey appToFlowRowKey = new AppToFlowRowKey(
-            context.getClusterId(), getFilters().getFromId());
-        FlowContext flowContext =
-            lookupFlowContext(appToFlowRowKey, hbaseConf, conn);
+            getFilters().getFromId());
+        FlowContext flowContext = lookupFlowContext(appToFlowRowKey,
+            context.getClusterId(), hbaseConf, conn);
         flowRunId = flowContext.getFlowRunId();
       }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org