Updated Branches:
  refs/heads/camel-2.12.x b275fb6a4 -> b073e10de

Corrected the tiny typo for skipping the online update check of Quartz2.


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

Branch: refs/heads/camel-2.12.x
Commit: b073e10def791dfec121aada2a367e6827489f1f
Parents: b275fb6
Author: Babak Vahdat <bvah...@apache.org>
Authored: Tue Dec 3 12:37:11 2013 +0100
Committer: Babak Vahdat <bvah...@apache.org>
Committed: Tue Dec 3 12:38:41 2013 +0100

----------------------------------------------------------------------
 .../java/org/apache/camel/component/quartz2/QuartzComponent.java  | 2 +-
 .../component/quartz2/SpringQuartzConsumerClusteredAppOne.xml     | 2 +-
 .../component/quartz2/SpringQuartzConsumerClusteredAppTwo.xml     | 2 +-
 .../component/quartz2/SpringQuartzPersistentStoreRestartTest.xml  | 3 ++-
 .../camel/component/quartz2/SpringQuartzPersistentStoreTest.xml   | 2 +-
 .../camel/routepolicy/quartz2/SpringQuartzClusteredAppOne.xml     | 2 +-
 .../camel/routepolicy/quartz2/SpringQuartzClusteredAppTwo.xml     | 2 +-
 7 files changed, 8 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/b073e10d/components/camel-quartz2/src/main/java/org/apache/camel/component/quartz2/QuartzComponent.java
----------------------------------------------------------------------
diff --git 
a/components/camel-quartz2/src/main/java/org/apache/camel/component/quartz2/QuartzComponent.java
 
b/components/camel-quartz2/src/main/java/org/apache/camel/component/quartz2/QuartzComponent.java
index b4c2510..bec1c47 100644
--- 
a/components/camel-quartz2/src/main/java/org/apache/camel/component/quartz2/QuartzComponent.java
+++ 
b/components/camel-quartz2/src/main/java/org/apache/camel/component/quartz2/QuartzComponent.java
@@ -141,7 +141,7 @@ public class QuartzComponent extends DefaultComponent 
implements StartupListener
 
             // force disabling update checker (will do online check over the 
internet)
             prop.put("org.quartz.scheduler.skipUpdateCheck", "true");
-            prop.put("org.terracotta.quartz.skipUpdateCheck=true", "true");
+            prop.put("org.terracotta.quartz.skipUpdateCheck", "true");
 
             answer = new StdSchedulerFactory(prop);
         }

http://git-wip-us.apache.org/repos/asf/camel/blob/b073e10d/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzConsumerClusteredAppOne.xml
----------------------------------------------------------------------
diff --git 
a/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzConsumerClusteredAppOne.xml
 
b/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzConsumerClusteredAppOne.xml
index 1b52b5d..3b06927 100644
--- 
a/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzConsumerClusteredAppOne.xml
+++ 
b/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzConsumerClusteredAppOne.xml
@@ -51,7 +51,7 @@
         <prop key="org.quartz.scheduler.instanceName">myscheduler</prop>
         <prop key="org.quartz.scheduler.instanceId">app-one</prop>
         <prop key="org.quartz.scheduler.skipUpdateCheck">true</prop>
-        <prop key="org.terracotta.quartz.skipUpdateCheck=true">true</prop>
+        <prop key="org.terracotta.quartz.skipUpdateCheck">true</prop>
         <prop 
key="org.quartz.jobStore.driverDelegateClass">org.quartz.impl.jdbcjobstore.StdJDBCDelegate</prop>
         <prop key="org.quartz.jobStore.isClustered">true</prop>
         <prop key="org.quartz.jobStore.clusterCheckinInterval">5000</prop>

http://git-wip-us.apache.org/repos/asf/camel/blob/b073e10d/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzConsumerClusteredAppTwo.xml
----------------------------------------------------------------------
diff --git 
a/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzConsumerClusteredAppTwo.xml
 
b/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzConsumerClusteredAppTwo.xml
index f1273a4..287546c 100644
--- 
a/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzConsumerClusteredAppTwo.xml
+++ 
b/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzConsumerClusteredAppTwo.xml
@@ -49,7 +49,7 @@
         <prop key="org.quartz.scheduler.instanceName">myscheduler</prop>
         <prop key="org.quartz.scheduler.instanceId">app-two</prop>
         <prop key="org.quartz.scheduler.skipUpdateCheck">true</prop>
-        <prop key="org.terracotta.quartz.skipUpdateCheck=true">true</prop>
+        <prop key="org.terracotta.quartz.skipUpdateCheck">true</prop>
         <prop 
key="org.quartz.jobStore.driverDelegateClass">org.quartz.impl.jdbcjobstore.StdJDBCDelegate</prop>
         <prop key="org.quartz.jobStore.isClustered">true</prop>
         <prop key="org.quartz.jobStore.clusterCheckinInterval">5000</prop>

http://git-wip-us.apache.org/repos/asf/camel/blob/b073e10d/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzPersistentStoreRestartTest.xml
----------------------------------------------------------------------
diff --git 
a/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzPersistentStoreRestartTest.xml
 
b/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzPersistentStoreRestartTest.xml
index 097cece..410968d 100644
--- 
a/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzPersistentStoreRestartTest.xml
+++ 
b/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzPersistentStoreRestartTest.xml
@@ -48,7 +48,8 @@
       <props>
         <prop key="org.quartz.scheduler.instanceName">myscheduler</prop>
         <prop key="org.quartz.scheduler.instanceId">AUTO</prop>
-        <prop key="org.terracotta.quartz.skipUpdateCheck=true">true</prop>
+        <prop key="org.quartz.scheduler.skipUpdateCheck">true</prop>
+        <prop key="org.terracotta.quartz.skipUpdateCheck">true</prop>
         <prop 
key="org.quartz.jobStore.driverDelegateClass">org.quartz.impl.jdbcjobstore.StdJDBCDelegate</prop>
         <prop key="org.quartz.jobStore.isClustered">false</prop>
       </props>

http://git-wip-us.apache.org/repos/asf/camel/blob/b073e10d/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzPersistentStoreTest.xml
----------------------------------------------------------------------
diff --git 
a/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzPersistentStoreTest.xml
 
b/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzPersistentStoreTest.xml
index 871f182..e5605b9 100644
--- 
a/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzPersistentStoreTest.xml
+++ 
b/components/camel-quartz2/src/test/resources/org/apache/camel/component/quartz2/SpringQuartzPersistentStoreTest.xml
@@ -49,7 +49,7 @@
         <prop key="org.quartz.scheduler.instanceName">myscheduler</prop>
         <prop key="org.quartz.scheduler.instanceId">AUTO</prop>
         <prop key="org.quartz.scheduler.skipUpdateCheck">true</prop>
-        <prop key="org.terracotta.quartz.skipUpdateCheck=true">true</prop>
+        <prop key="org.terracotta.quartz.skipUpdateCheck">true</prop>
         <prop 
key="org.quartz.jobStore.driverDelegateClass">org.quartz.impl.jdbcjobstore.StdJDBCDelegate</prop>
         <prop key="org.quartz.jobStore.isClustered">false</prop>
       </props>

http://git-wip-us.apache.org/repos/asf/camel/blob/b073e10d/components/camel-quartz2/src/test/resources/org/apache/camel/routepolicy/quartz2/SpringQuartzClusteredAppOne.xml
----------------------------------------------------------------------
diff --git 
a/components/camel-quartz2/src/test/resources/org/apache/camel/routepolicy/quartz2/SpringQuartzClusteredAppOne.xml
 
b/components/camel-quartz2/src/test/resources/org/apache/camel/routepolicy/quartz2/SpringQuartzClusteredAppOne.xml
index 3c230d8..c75f049 100644
--- 
a/components/camel-quartz2/src/test/resources/org/apache/camel/routepolicy/quartz2/SpringQuartzClusteredAppOne.xml
+++ 
b/components/camel-quartz2/src/test/resources/org/apache/camel/routepolicy/quartz2/SpringQuartzClusteredAppOne.xml
@@ -49,7 +49,7 @@
         <prop key="org.quartz.scheduler.instanceName">myscheduler</prop>
         <prop key="org.quartz.scheduler.instanceId">app-one</prop>
         <prop key="org.quartz.scheduler.skipUpdateCheck">true</prop>
-        <prop key="org.terracotta.quartz.skipUpdateCheck=true">true</prop>
+        <prop key="org.terracotta.quartz.skipUpdateCheck">true</prop>
         <prop 
key="org.quartz.jobStore.driverDelegateClass">org.quartz.impl.jdbcjobstore.StdJDBCDelegate</prop>
         <prop key="org.quartz.jobStore.isClustered">true</prop>
         <prop key="org.quartz.jobStore.clusterCheckinInterval">5000</prop>

http://git-wip-us.apache.org/repos/asf/camel/blob/b073e10d/components/camel-quartz2/src/test/resources/org/apache/camel/routepolicy/quartz2/SpringQuartzClusteredAppTwo.xml
----------------------------------------------------------------------
diff --git 
a/components/camel-quartz2/src/test/resources/org/apache/camel/routepolicy/quartz2/SpringQuartzClusteredAppTwo.xml
 
b/components/camel-quartz2/src/test/resources/org/apache/camel/routepolicy/quartz2/SpringQuartzClusteredAppTwo.xml
index a01dde6..ac60919 100644
--- 
a/components/camel-quartz2/src/test/resources/org/apache/camel/routepolicy/quartz2/SpringQuartzClusteredAppTwo.xml
+++ 
b/components/camel-quartz2/src/test/resources/org/apache/camel/routepolicy/quartz2/SpringQuartzClusteredAppTwo.xml
@@ -49,7 +49,7 @@
         <prop key="org.quartz.scheduler.instanceName">myscheduler</prop>
         <prop key="org.quartz.scheduler.instanceId">app-two</prop>
         <prop key="org.quartz.scheduler.skipUpdateCheck">true</prop>
-        <prop key="org.terracotta.quartz.skipUpdateCheck=true">true</prop>
+        <prop key="org.terracotta.quartz.skipUpdateCheck">true</prop>
         <prop 
key="org.quartz.jobStore.driverDelegateClass">org.quartz.impl.jdbcjobstore.StdJDBCDelegate</prop>
         <prop key="org.quartz.jobStore.isClustered">true</prop>
         <prop key="org.quartz.jobStore.clusterCheckinInterval">5000</prop>

Reply via email to