Return-Path: X-Original-To: apmail-drill-commits-archive@www.apache.org Delivered-To: apmail-drill-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 35C20181DD for ; Tue, 16 Feb 2016 21:10:51 +0000 (UTC) Received: (qmail 22768 invoked by uid 500); 16 Feb 2016 21:10:51 -0000 Delivered-To: apmail-drill-commits-archive@drill.apache.org Received: (qmail 22728 invoked by uid 500); 16 Feb 2016 21:10:51 -0000 Mailing-List: contact commits-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: commits@drill.apache.org Delivered-To: mailing list commits@drill.apache.org Received: (qmail 22617 invoked by uid 99); 16 Feb 2016 21:10:51 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2016 21:10:51 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D6211E0B37; Tue, 16 Feb 2016 21:10:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: json@apache.org To: commits@drill.apache.org Date: Tue, 16 Feb 2016 21:10:54 -0000 Message-Id: <4dcc5ac0b8ed4234a51a7d58b923f682@git.apache.org> In-Reply-To: <14cc1b94fdb6424783958e0cbe265d37@git.apache.org> References: <14cc1b94fdb6424783958e0cbe265d37@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [5/9] drill git commit: DRILL-4235: record new state STARTING when state transitions to STARTING from ENQUEUED 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 Authored: Thu Feb 4 12:07:36 2016 -0800 Committer: Jason Altekruse 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;