You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by ja...@apache.org on 2015/05/14 06:42:12 UTC

[7/8] drill git commit: DRILL-3080: Fix queue failure messages.

DRILL-3080: Fix queue failure messages.


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/f63dac9d
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/f63dac9d
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/f63dac9d

Branch: refs/heads/master
Commit: f63dac9dc9d65624712932fe0527726626d304cc
Parents: 49940b8
Author: Jacques Nadeau <ja...@apache.org>
Authored: Wed May 13 19:30:33 2015 -0700
Committer: Jacques Nadeau <ja...@apache.org>
Committed: Wed May 13 19:34:01 2015 -0700

----------------------------------------------------------------------
 .../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/f63dac9d/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 fe267ba..6840cf3 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
@@ -493,7 +493,7 @@ public class Foreman implements Runnable {
             .resourceError()
             .message(
                 "Unable to acquire queue resources for query within timeout.  Timeout for %s queue was set at %d seconds.",
-                queueTimeout / 1000, queueName)
+                queueName, queueTimeout / 1000)
             .build();
       }