DRILL-4235: record new state STARTING when state transitions to STARTING from ENQUEUED
Project: http://git-wip-us.apache.org/repos/asf/drill/repo Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/7502584d Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/7502584d Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/7502584d Branch: refs/heads/drill-1.5.0-rc3 Commit: 7502584d9874b4cf9bf29e399a7433ab982e321d Parents: ac79c59 Author: Hanifi Gunes <hanifigu...@gmail.com> Authored: Thu Feb 4 12:07:36 2016 -0800 Committer: Jason Altekruse <altekruseja...@gmail.com> Committed: Tue Feb 9 07:52:49 2016 -0800 ---------------------------------------------------------------------- .../src/main/java/org/apache/drill/exec/work/foreman/Foreman.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/drill/blob/7502584d/exec/java-exec/src/main/java/org/apache/drill/exec/work/foreman/Foreman.java ---------------------------------------------------------------------- diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/work/foreman/Foreman.java b/exec/java-exec/src/main/java/org/apache/drill/exec/work/foreman/Foreman.java index da775cf..cdbdfa4 100644 --- a/exec/java-exec/src/main/java/org/apache/drill/exec/work/foreman/Foreman.java +++ b/exec/java-exec/src/main/java/org/apache/drill/exec/work/foreman/Foreman.java @@ -810,7 +810,7 @@ public class Foreman implements Runnable { foremanResult.close(); return; case STARTING: - recordNewState(state); + recordNewState(newState); return; } break;