Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id F29F818184 for ; Thu, 23 Apr 2015 06:54:54 +0000 (UTC) Received: (qmail 36739 invoked by uid 500); 23 Apr 2015 06:54:54 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 36692 invoked by uid 500); 23 Apr 2015 06:54:54 -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 36683 invoked by uid 99); 23 Apr 2015 06:54:54 -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; Thu, 23 Apr 2015 06:54:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B6096E051C; Thu, 23 Apr 2015 06:54:54 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: camel git commit: CAMEL-8665: Throttler EIP - Using method call for message per sec exp fails in spring Date: Thu, 23 Apr 2015 06:54:54 +0000 (UTC) Repository: camel Updated Branches: refs/heads/camel-2.14.x 02b0fbd40 -> 46c52d24f CAMEL-8665: Throttler EIP - Using method call for message per sec exp fails in spring Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/46c52d24 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/46c52d24 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/46c52d24 Branch: refs/heads/camel-2.14.x Commit: 46c52d24f4f96c42eb5e66b51d00e280ebeeffcc Parents: 02b0fbd Author: Claus Ibsen Authored: Thu Apr 23 08:58:06 2015 +0200 Committer: Claus Ibsen Committed: Thu Apr 23 08:58:14 2015 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/camel/model/ThrottleDefinition.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/46c52d24/camel-core/src/main/java/org/apache/camel/model/ThrottleDefinition.java ---------------------------------------------------------------------- diff --git a/camel-core/src/main/java/org/apache/camel/model/ThrottleDefinition.java b/camel-core/src/main/java/org/apache/camel/model/ThrottleDefinition.java index aeb395c..eb08e06 100644 --- a/camel-core/src/main/java/org/apache/camel/model/ThrottleDefinition.java +++ b/camel-core/src/main/java/org/apache/camel/model/ThrottleDefinition.java @@ -27,6 +27,7 @@ import javax.xml.bind.annotation.XmlTransient; import org.apache.camel.Expression; import org.apache.camel.Processor; import org.apache.camel.builder.ExpressionBuilder; +import org.apache.camel.model.language.ExpressionDefinition; import org.apache.camel.processor.Throttler; import org.apache.camel.spi.RouteContext;