Skip to content

Commit 7ba16e3

Browse files
committed
Merge pull request #5205 from Vedran Pavić
* gh-5205: Fix namespace declarations in Hazelcast xml's and make them consistent
2 parents ad57d99 + 6801e82 commit 7ba16e3

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
<hazelcast>
1+
<hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.5.xsd"
2+
xmlns="http://www.hazelcast.com/schema/config"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
25
<map name="books"/>
36
<map name="players"/>
4-
</hazelcast>
7+
8+
</hazelcast>

spring-boot-samples/spring-boot-sample-cache/src/main/resources/hazelcast.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.4.xsd"
1+
<hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.5.xsd"
22
xmlns="http://www.hazelcast.com/schema/config"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
44

@@ -14,4 +14,4 @@
1414
<management-enabled>true</management-enabled>
1515
</cache>
1616

17-
</hazelcast>
17+
</hazelcast>

0 commit comments

Comments
 (0)