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 6E9A42009F9 for ; Mon, 23 May 2016 22:21:50 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 6D098160A2B; Mon, 23 May 2016 20:21:50 +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 B4761160A24 for ; Mon, 23 May 2016 22:21:49 +0200 (CEST) Received: (qmail 53146 invoked by uid 500); 23 May 2016 20:21:48 -0000 Mailing-List: contact commits-help@crunch.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@crunch.apache.org Delivered-To: mailing list commits@crunch.apache.org Received: (qmail 53104 invoked by uid 99); 23 May 2016 20:21:48 -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, 23 May 2016 20:21:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9EAD5E020F; Mon, 23 May 2016 20:21:48 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mkwhit@apache.org To: commits@crunch.apache.org Date: Mon, 23 May 2016 20:21:50 -0000 Message-Id: <893a6a542d5c4826b3211e872045ab51@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [3/3] crunch git commit: CRUNCH-606: Handle setting version correctly and removed stray System.out in test. archived-at: Mon, 23 May 2016 20:21:50 -0000 CRUNCH-606: Handle setting version correctly and removed stray System.out in test. Project: http://git-wip-us.apache.org/repos/asf/crunch/repo Commit: http://git-wip-us.apache.org/repos/asf/crunch/commit/360d72a4 Tree: http://git-wip-us.apache.org/repos/asf/crunch/tree/360d72a4 Diff: http://git-wip-us.apache.org/repos/asf/crunch/diff/360d72a4 Branch: refs/heads/master Commit: 360d72a4f887505e020fdb8f99c3ccb1800693f6 Parents: 321cfef Author: Micah Whitacre Authored: Mon May 23 15:13:02 2016 -0500 Committer: Micah Whitacre Committed: Mon May 23 15:13:55 2016 -0500 ---------------------------------------------------------------------- crunch-kafka/pom.xml | 2 +- .../test/java/org/apache/crunch/kafka/KafkaRecordsIterableIT.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/crunch/blob/360d72a4/crunch-kafka/pom.xml ---------------------------------------------------------------------- diff --git a/crunch-kafka/pom.xml b/crunch-kafka/pom.xml index a96a9b0..7d6256b 100644 --- a/crunch-kafka/pom.xml +++ b/crunch-kafka/pom.xml @@ -22,7 +22,7 @@ under the License. org.apache.crunch crunch-parent - 0.14.0-SNAPSHOT + 0.14.1-SNAPSHOT crunch-kafka http://git-wip-us.apache.org/repos/asf/crunch/blob/360d72a4/crunch-kafka/src/test/java/org/apache/crunch/kafka/KafkaRecordsIterableIT.java ---------------------------------------------------------------------- diff --git a/crunch-kafka/src/test/java/org/apache/crunch/kafka/KafkaRecordsIterableIT.java b/crunch-kafka/src/test/java/org/apache/crunch/kafka/KafkaRecordsIterableIT.java index ce97ec1..36f293f 100644 --- a/crunch-kafka/src/test/java/org/apache/crunch/kafka/KafkaRecordsIterableIT.java +++ b/crunch-kafka/src/test/java/org/apache/crunch/kafka/KafkaRecordsIterableIT.java @@ -177,7 +177,6 @@ public class KafkaRecordsIterableIT { Map> offsets = new HashMap<>(); for (Map.Entry entry : startOffsets.entrySet()) { offsets.put(entry.getKey(), Pair.of(entry.getValue(), stopOffsets.get(entry.getKey()))); - System.out.println(entry.getKey()+ "start:"+entry.getValue()+":end:"+stopOffsets.get(entry.getKey())); } Iterable> data = new KafkaRecordsIterable(consumer, offsets, new Properties());