Repository: camel
Updated Branches:
  refs/heads/camel-2.17.x ef6d33803 -> b88d365ef


CAMEL-10221: Camel-Jcache: writeThrough option is never used


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

Branch: refs/heads/camel-2.17.x
Commit: b88d365efd189a5287e2b1b3a42a150185601065
Parents: ef6d338
Author: Andrea Cosentino <anco...@gmail.com>
Authored: Thu Aug 4 14:24:06 2016 +0200
Committer: Andrea Cosentino <anco...@gmail.com>
Committed: Thu Aug 4 14:47:46 2016 +0200

----------------------------------------------------------------------
 .../main/java/org/apache/camel/component/jcache/JCacheManager.java  | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/b88d365e/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheManager.java
----------------------------------------------------------------------
diff --git 
a/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheManager.java
 
b/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheManager.java
index bb86e08..b7eb90c 100644
--- 
a/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheManager.java
+++ 
b/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheManager.java
@@ -148,6 +148,7 @@ public class JCacheManager<K, V> implements Closeable {
         
mutableConfiguration.setStatisticsEnabled(configuration.isStatisticsEnabled());
         mutableConfiguration.setReadThrough(configuration.isReadThrough());
         mutableConfiguration.setStoreByValue(configuration.isStoreByValue());
+        mutableConfiguration.setWriteThrough(configuration.isWriteThrough());
 
         return mutableConfiguration;
     }

Reply via email to