Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E80DF200D16 for ; Tue, 10 Oct 2017 20:08:36 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E6896160BE1; Tue, 10 Oct 2017 18:08:36 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 316F61609CB for ; Tue, 10 Oct 2017 20:08:36 +0200 (CEST) Received: (qmail 79775 invoked by uid 500); 10 Oct 2017 18:08:35 -0000 Mailing-List: contact dev-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list dev@drill.apache.org Received: (qmail 79758 invoked by uid 99); 10 Oct 2017 18:08:35 -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, 10 Oct 2017 18:08:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E09CBF574A; Tue, 10 Oct 2017 18:08:34 +0000 (UTC) From: prasadns14 To: dev@drill.apache.org Reply-To: dev@drill.apache.org References: In-Reply-To: Subject: [GitHub] drill pull request #982: Fixed queued time calculation Content-Type: text/plain Message-Id: <20171010180834.E09CBF574A@git1-us-west.apache.org> Date: Tue, 10 Oct 2017 18:08:34 +0000 (UTC) archived-at: Tue, 10 Oct 2017 18:08:37 -0000 Github user prasadns14 commented on a diff in the pull request: https://github.com/apache/drill/pull/982#discussion_r143808676 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/work/foreman/rm/EmbeddedQueryQueue.java --- @@ -93,7 +93,7 @@ public void release() { public String queueName() { return "local-queue"; } } - private final int queueTimeoutMs; + private final long queueTimeoutMs; --- End diff -- Fixed ---