explicitly set class loader for Hazelcast
Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/82cc54e4 Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/82cc54e4 Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/82cc54e4 Branch: refs/heads/ldp Commit: 82cc54e4efc3c17d7e8425ff9dde71a8873dd0a0 Parents: 42cd7a9 Author: Sebastian Schaffert <[email protected]> Authored: Tue Mar 18 16:22:33 2014 +0100 Committer: Sebastian Schaffert <[email protected]> Committed: Tue Mar 18 16:22:33 2014 +0100 ---------------------------------------------------------------------- .../marmotta/kiwi/hazelcast/caching/HazelcastCacheManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/marmotta/blob/82cc54e4/libraries/kiwi/kiwi-caching-hazelcast/src/main/java/org/apache/marmotta/kiwi/hazelcast/caching/HazelcastCacheManager.java ---------------------------------------------------------------------- diff --git a/libraries/kiwi/kiwi-caching-hazelcast/src/main/java/org/apache/marmotta/kiwi/hazelcast/caching/HazelcastCacheManager.java b/libraries/kiwi/kiwi-caching-hazelcast/src/main/java/org/apache/marmotta/kiwi/hazelcast/caching/HazelcastCacheManager.java index cd3a9c5..139d8ea 100644 --- a/libraries/kiwi/kiwi-caching-hazelcast/src/main/java/org/apache/marmotta/kiwi/hazelcast/caching/HazelcastCacheManager.java +++ b/libraries/kiwi/kiwi-caching-hazelcast/src/main/java/org/apache/marmotta/kiwi/hazelcast/caching/HazelcastCacheManager.java @@ -72,7 +72,7 @@ public class HazelcastCacheManager implements CacheManager { } hcConfiguration.getGroupConfig().setName(configuration.getClusterName()); - + hcConfiguration.setClassLoader(HazelcastCacheManager.class.getClassLoader()); setupSerializers();
