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 63E40200BA1 for ; Mon, 17 Oct 2016 13:11:51 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 625EB160AE5; Mon, 17 Oct 2016 11:11:51 +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 A441C160AF0 for ; Mon, 17 Oct 2016 13:11:50 +0200 (CEST) Received: (qmail 39692 invoked by uid 500); 17 Oct 2016 11:11:49 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 39621 invoked by uid 99); 17 Oct 2016 11:11:49 -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; Mon, 17 Oct 2016 11:11:49 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A56A0E2EF2; Mon, 17 Oct 2016 11:11:49 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: acosentino@apache.org To: commits@camel.apache.org Date: Mon, 17 Oct 2016 11:11:53 -0000 Message-Id: In-Reply-To: <0ea52e56cd6f4b82baeac7ad3aa2c40e@git.apache.org> References: <0ea52e56cd6f4b82baeac7ad3aa2c40e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [05/13] camel git commit: fix test variable archived-at: Mon, 17 Oct 2016 11:11:51 -0000 fix test variable Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/603755c6 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/603755c6 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/603755c6 Branch: refs/heads/master Commit: 603755c69d0490fb82964cf88b37862c3e0dc7c4 Parents: 195736c Author: Fabrizio Spataro Authored: Fri Oct 14 11:33:06 2016 +0200 Committer: Andrea Cosentino Committed: Mon Oct 17 13:11:28 2016 +0200 ---------------------------------------------------------------------- .../test/java/org/apache/camel/component/drill/ProducerTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/603755c6/components/camel-drill/src/test/java/org/apache/camel/component/drill/ProducerTest.java ---------------------------------------------------------------------- diff --git a/components/camel-drill/src/test/java/org/apache/camel/component/drill/ProducerTest.java b/components/camel-drill/src/test/java/org/apache/camel/component/drill/ProducerTest.java index d46d505..fd5888d 100644 --- a/components/camel-drill/src/test/java/org/apache/camel/component/drill/ProducerTest.java +++ b/components/camel-drill/src/test/java/org/apache/camel/component/drill/ProducerTest.java @@ -28,9 +28,9 @@ import org.junit.Test; @Ignore("CAMEL-10327: Set host, mode and query to test drill producer (direct connection mode).") public class ProducerTest extends CamelTestSupport { - private final String host = "bizzy"; + private final String host = "localhost"; private final String mode = DrillConnectionMode.DRILLBIT.name().toLowerCase(); - private final String query = "select * from mongo.view.events limit 100"; + private final String query = "select * from schema.db"; @Test public void testProducer() throws Exception {