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 2017/04/19 08:05:09 UTC

camel git commit: CAMEL-10948: Camel-hdfs2: initialDelay option is overwritten with default value

Repository: camel
Updated Branches:
  refs/heads/master 9f126aab7 -> dd940e926


CAMEL-10948: Camel-hdfs2: initialDelay option is overwritten with default value


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/dd940e92
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/dd940e92
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/dd940e92

Branch: refs/heads/master
Commit: dd940e926c947f1e9ab915a8e523b30fab65566e
Parents: 9f126aa
Author: Andrea Cosentino <an...@gmail.com>
Authored: Wed Apr 19 10:03:49 2017 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Wed Apr 19 10:04:56 2017 +0200

----------------------------------------------------------------------
 .../main/java/org/apache/camel/component/hdfs2/HdfsEndpoint.java  | 1 -
 .../hdfs2/springboot/HdfsComponentAutoConfiguration.java          | 3 +++
 .../component/hdfs2/springboot/HdfsComponentConfiguration.java    | 2 ++
 3 files changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/dd940e92/components/camel-hdfs2/src/main/java/org/apache/camel/component/hdfs2/HdfsEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-hdfs2/src/main/java/org/apache/camel/component/hdfs2/HdfsEndpoint.java b/components/camel-hdfs2/src/main/java/org/apache/camel/component/hdfs2/HdfsEndpoint.java
index 6b29475..7224d37 100644
--- a/components/camel-hdfs2/src/main/java/org/apache/camel/component/hdfs2/HdfsEndpoint.java
+++ b/components/camel-hdfs2/src/main/java/org/apache/camel/component/hdfs2/HdfsEndpoint.java
@@ -41,7 +41,6 @@ public class HdfsEndpoint extends ScheduledPollEndpoint {
         super(endpointUri, context);
         this.config = new HdfsConfiguration();
         this.config.parseURI(new URI(endpointUri));
-        setInitialDelay(HdfsConsumer.DEFAULT_CONSUMER_INITIAL_DELAY);
     }
 
     @Override

http://git-wip-us.apache.org/repos/asf/camel/blob/dd940e92/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentAutoConfiguration.java
index 47da1fc..88b86d2 100644
--- a/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.hdfs2.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.hdfs2.HdfsComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated(value = "org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo", date = "2017-04-19T08:03:41.690Z")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(HdfsComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class HdfsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated(value = "org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo", date = "2017-04-19T08:03:41.738Z")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/dd940e92/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentConfiguration.java
index d2cfd9d..29d8a56 100644
--- a/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.hdfs2.springboot;
 
+import javax.annotation.Generated;
 import javax.security.auth.login.Configuration;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated(value = "org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo", date = "2017-04-19T08:03:41.545Z")
 @ConfigurationProperties(prefix = "camel.component.hdfs2")
 public class HdfsComponentConfiguration {