You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by ac...@apache.org on 2017/08/10 09:45:28 UTC

[3/3] karaf-cellar git commit: [KARAF-5302] Fixed hazelcast.xml configuration file to work with 3.8.x

[KARAF-5302] Fixed hazelcast.xml configuration file to work with 3.8.x


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

Branch: refs/heads/cellar-4.0.x
Commit: eec19fd4e9a65c9e4bd89fcd1b219e3afc079945
Parents: 601f3a3
Author: Andrea Cosentino <an...@gmail.com>
Authored: Thu Aug 10 11:44:52 2017 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Thu Aug 10 11:44:52 2017 +0200

----------------------------------------------------------------------
 hazelcast/src/test/resources/etc/hazelcast.xml | 26 ++++++++++-----------
 1 file changed, 13 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf-cellar/blob/eec19fd4/hazelcast/src/test/resources/etc/hazelcast.xml
----------------------------------------------------------------------
diff --git a/hazelcast/src/test/resources/etc/hazelcast.xml b/hazelcast/src/test/resources/etc/hazelcast.xml
index 2e347ec..cc4f20a 100644
--- a/hazelcast/src/test/resources/etc/hazelcast.xml
+++ b/hazelcast/src/test/resources/etc/hazelcast.xml
@@ -1,16 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<hz:hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config http://www.hazelcast.com/schema/config/hazelcast-config-3.6.xsd"
-           xmlns:hz="http://www.hazelcast.com/schema/config"
-           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<hazelcast xmlns="http://www.hazelcast.com/schema/config"
+           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+           xsi:schemaLocation="http://www.hazelcast.com/schema/config http://www.hazelcast.com/schema/config/hazelcast-config-3.6.xsd">
 
-    <hz:network>
-        <hz:port auto-increment="true" port-count="100">5701</hz:port>
-        <hz:join>
-            <hz:multicast enabled="false"/>
-            <hz:tcp-ip enabled="true">
-                <hz:interface>127.0.0.1</hz:interface>
-            </hz:tcp-ip>
-        </hz:join>
-    </hz:network>
+    <network>
+        <port auto-increment="true" port-count="100">5701</port>
+        <join>
+            <multicast enabled="false"/>
+            <tcp-ip enabled="true">
+                <interface>127.0.0.1</interface>
+            </tcp-ip>
+        </join>
+    </network>
 
-</hz:hazelcast>
\ No newline at end of file
+</hazelcast>