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 084EC200C20 for ; Sun, 19 Feb 2017 17:56:39 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 06F17160B3F; Sun, 19 Feb 2017 16:56:39 +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 3A75B160B65 for ; Sun, 19 Feb 2017 17:56:38 +0100 (CET) Received: (qmail 8320 invoked by uid 500); 19 Feb 2017 16:56:37 -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 8124 invoked by uid 99); 19 Feb 2017 16:56:37 -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; Sun, 19 Feb 2017 16:56:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3DC4CDFF3E; Sun, 19 Feb 2017 16:56:37 +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 Date: Sun, 19 Feb 2017 16:56:39 -0000 Message-Id: <89f4c5a305eb40ffbdb92a7ecfe5c628@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [3/3] camel git commit: Polished archived-at: Sun, 19 Feb 2017 16:56:39 -0000 Polished Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/4b81fbbc Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/4b81fbbc Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/4b81fbbc Branch: refs/heads/master Commit: 4b81fbbce759099b688c0437095c38a0a1c94c75 Parents: 593dffe Author: Claus Ibsen Authored: Sun Feb 19 17:56:41 2017 +0100 Committer: Claus Ibsen Committed: Sun Feb 19 17:56:41 2017 +0100 ---------------------------------------------------------------------- .../apache/camel/component/consul/policy/ConsulRoutePolicy.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/4b81fbbc/components/camel-consul/src/main/java/org/apache/camel/component/consul/policy/ConsulRoutePolicy.java ---------------------------------------------------------------------- diff --git a/components/camel-consul/src/main/java/org/apache/camel/component/consul/policy/ConsulRoutePolicy.java b/components/camel-consul/src/main/java/org/apache/camel/component/consul/policy/ConsulRoutePolicy.java index f0d3083..17c9c43 100644 --- a/components/camel-consul/src/main/java/org/apache/camel/component/consul/policy/ConsulRoutePolicy.java +++ b/components/camel-consul/src/main/java/org/apache/camel/component/consul/policy/ConsulRoutePolicy.java @@ -252,7 +252,7 @@ public class ConsulRoutePolicy extends RoutePolicySupport implements CamelContex this.servicePath = String.format("/service/%s/leader", serviceName); } - @ManagedAttribute(description = "The time to live") + @ManagedAttribute(description = "The time to live (seconds)") public int getTtl() { return ttl; } @@ -261,7 +261,7 @@ public class ConsulRoutePolicy extends RoutePolicySupport implements CamelContex this.ttl = ttl > 10 ? ttl : 10; } - @ManagedAttribute(description = "The lock delay") + @ManagedAttribute(description = "The lock delay (seconds)") public int getLockDelay() { return lockDelay; }