Skip to content

Commit

Permalink
sysout and syserr on debug + search executors in completed_executors
Browse files Browse the repository at this point in the history
  • Loading branch information
tmmi committed May 25, 2016
1 parent 3b4007b commit 7f24971
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/js/stores/MesosStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ function getExecutorDirectoryFromState(frameworkId, taskId, state) {

if (framework.executors != null) {
executor = framework.executors.find(matchExecutor);
} else if (framework.completed_executors != null) {
}

if (framework.completed_executors != null && executor == null) {
executor = framework.completed_executors.find(matchExecutor);
}

Expand Down

0 comments on commit 7f24971

Please sign in to comment.