Repository: gora Updated Branches: refs/heads/master 498c783eb -> e5ca31b64
GORA-491 adding fix Project: http://git-wip-us.apache.org/repos/asf/gora/repo Commit: http://git-wip-us.apache.org/repos/asf/gora/commit/e943b5a0 Tree: http://git-wip-us.apache.org/repos/asf/gora/tree/e943b5a0 Diff: http://git-wip-us.apache.org/repos/asf/gora/diff/e943b5a0 Branch: refs/heads/master Commit: e943b5a036644c850227d8de8d665eed45510f59 Parents: 6406e12 Author: Kevin <[email protected]> Authored: Sun Aug 28 07:54:03 2016 +0530 Committer: Kevin <[email protected]> Committed: Sun Aug 28 07:54:03 2016 +0530 ---------------------------------------------------------------------- .../src/main/java/org/apache/gora/jcache/store/JCacheStore.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/gora/blob/e943b5a0/gora-jcache/src/main/java/org/apache/gora/jcache/store/JCacheStore.java ---------------------------------------------------------------------- diff --git a/gora-jcache/src/main/java/org/apache/gora/jcache/store/JCacheStore.java b/gora-jcache/src/main/java/org/apache/gora/jcache/store/JCacheStore.java index d39c67c..e6b8feb 100644 --- a/gora-jcache/src/main/java/org/apache/gora/jcache/store/JCacheStore.java +++ b/gora-jcache/src/main/java/org/apache/gora/jcache/store/JCacheStore.java @@ -410,6 +410,7 @@ public class JCacheStore<K, T extends PersistentBase> extends DataStoreBase<K, T PartitionQueryImpl<K, T> partition = new PartitionQueryImpl<>( query, memberOwnedCacheEntries.first(), memberOwnedCacheEntries.last(), member.getSocketAddress().getHostString()); + partition.setConf(this.getConf()); partitions.add(partition); } } catch (java.lang.Exception ex) {
