Browse Source

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

(cherry picked from commit c9246f619104bff44dd453a4ffe70104d37fd781)
Varun Saxena 8 years ago
parent
commit
8c81f7fc08

+ 3 - 3
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/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();
       }