You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/03/13 07:21:40 UTC

[camel] branch master updated: CAMEL-13321 - camel-twitter-direct-message doesn't use default delay of 30s https://issues.apache.org/jira/browse/CAMEL-13321

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 59595ca  CAMEL-13321 - camel-twitter-direct-message doesn't use default delay of 30s https://issues.apache.org/jira/browse/CAMEL-13321
59595ca is described below

commit 59595cab420e3c28bc6f359778b0fc0e2818b0e1
Author: Claudio Miranda <cl...@claudius.com.br>
AuthorDate: Tue Mar 12 17:48:01 2019 -0300

    CAMEL-13321 - camel-twitter-direct-message doesn't use default delay of 30s
    https://issues.apache.org/jira/browse/CAMEL-13321
---
 .../java/org/apache/camel/component/twitter/AbstractTwitterEndpoint.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/components/camel-twitter/src/main/java/org/apache/camel/component/twitter/AbstractTwitterEndpoint.java b/components/camel-twitter/src/main/java/org/apache/camel/component/twitter/AbstractTwitterEndpoint.java
index 61a6dc6..2f77a05 100644
--- a/components/camel-twitter/src/main/java/org/apache/camel/component/twitter/AbstractTwitterEndpoint.java
+++ b/components/camel-twitter/src/main/java/org/apache/camel/component/twitter/AbstractTwitterEndpoint.java
@@ -38,6 +38,7 @@ public abstract class AbstractTwitterEndpoint extends DefaultPollingEndpoint imp
 
     public AbstractTwitterEndpoint(String uri, AbstractTwitterComponent component, TwitterConfiguration properties) {
         super(uri, component);
+        setDelay(DEFAULT_CONSUMER_DELAY);
         this.properties = properties;
     }