You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by pa...@apache.org on 2015/02/18 06:30:15 UTC

[3/3] drill git commit: DRILL-2169: disable embedded server for tests when not needed

DRILL-2169: disable embedded server for tests when not needed


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

Branch: refs/heads/master
Commit: 30c09ec48a3fa51af3015a6ba5dc3c9b51b63044
Parents: d2831ba
Author: Hanifi Gunes <hg...@maprtech.com>
Authored: Wed Feb 4 19:05:47 2015 -0800
Committer: Parth Chandra <pc...@maprtech.com>
Committed: Tue Feb 17 21:29:53 2015 -0800

----------------------------------------------------------------------
 exec/java-exec/src/test/java/org/apache/drill/BaseTestQuery.java | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/30c09ec4/exec/java-exec/src/test/java/org/apache/drill/BaseTestQuery.java
----------------------------------------------------------------------
diff --git a/exec/java-exec/src/test/java/org/apache/drill/BaseTestQuery.java b/exec/java-exec/src/test/java/org/apache/drill/BaseTestQuery.java
index 17bcb79..cf99577 100644
--- a/exec/java-exec/src/test/java/org/apache/drill/BaseTestQuery.java
+++ b/exec/java-exec/src/test/java/org/apache/drill/BaseTestQuery.java
@@ -49,6 +49,7 @@ import org.apache.drill.exec.server.RemoteServiceSet;
 import org.apache.drill.exec.util.VectorUtil;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
+import org.junit.Rule;
 import org.junit.rules.TestRule;
 import org.junit.rules.TestWatcher;
 import org.junit.runner.Description;
@@ -67,6 +68,7 @@ public class BaseTestQuery extends ExecTest{
   private static final Properties TEST_CONFIGURATIONS = new Properties() {
     {
       put(ExecConstants.SYS_STORE_PROVIDER_LOCAL_ENABLE_WRITE, "false");
+      put(ExecConstants.HTTP_ENABLE, "false");
     }
   };