This commit updates HazelcastHealthIndicator and HazelcastCacheMeterBinderProvider so that they work with Hazelcast 4 while retaining compatibility with Hazelcast 3. Reflection is used when necessary. This commit also adds a smoke test that validates those features are working when Hazelcast 4 is on the classpath. Closes gh-21169
14 lines
455 B
XML
14 lines
455 B
XML
<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-4.0.xsd">
|
|
<instance-name>actuator-hazelcast-4</instance-name>
|
|
<map name="defaultCache"/>
|
|
<network>
|
|
<join>
|
|
<tcp-ip enabled="false"/>
|
|
<multicast enabled="false"/>
|
|
</join>
|
|
</network>
|
|
</hazelcast>
|