Return-Path: X-Original-To: apmail-camel-dev-archive@www.apache.org Delivered-To: apmail-camel-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2752518254 for ; Fri, 21 Aug 2015 20:31:02 +0000 (UTC) Received: (qmail 47369 invoked by uid 500); 21 Aug 2015 20:30:56 -0000 Delivered-To: apmail-camel-dev-archive@camel.apache.org Received: (qmail 47319 invoked by uid 500); 21 Aug 2015 20:30:56 -0000 Mailing-List: contact dev-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 dev@camel.apache.org Received: (qmail 47302 invoked by uid 99); 21 Aug 2015 20:30:55 -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; Fri, 21 Aug 2015 20:30:55 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B07DEE02D3; Fri, 21 Aug 2015 20:30:55 +0000 (UTC) From: williamd1618 To: dev@camel.apache.org Reply-To: dev@camel.apache.org Message-ID: Subject: [GitHub] camel pull request: Fix Endpoint URI for KafkProducer Content-Type: text/plain Date: Fri, 21 Aug 2015 20:30:55 +0000 (UTC) GitHub user williamd1618 opened a pull request: https://github.com/apache/camel/pull/596 Fix Endpoint URI for KafkProducer When doing a route from Kafka topic to Kafka topic I noticed that functionality like: ``` from("kafka:localhost:9092?topic=from&zookeeperHost=localhost&groupId=mytest&zookeeperPort=2181&autoOffsetReset=smallest).to("kafka:localhost:9092?topic=to&zookeeperHost=localhost&groupId=mytest&zookeeperPort=2181); ``` did not work as the Exchange header of kafka.TOPIC was being used instead of the UriParam in the KafkaEndpoint for the producer. You can merge this pull request into a Git repository by running: $ git pull https://github.com/williamd1618/camel master Alternatively you can review and apply these changes as the patch at: https://github.com/apache/camel/pull/596.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #596 ---- commit 7ed60926e3e617f9f47f07db6e6ae55667a8db03 Author: Daniel Williams Date: 2015-08-21T20:27:50Z Fix Endpoint URI for KafkProduer to guarantee it reads topic UriParam it it exists on KafkaEndpoint ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---