Improve execution speed of CacheAutoConfigurationTests

As of Hazelcast 3.7, the bootstrap is pretty slow by default due to the
networking discovery. This commit disables both TCP/IP and multicast
discoveries.
This commit is contained in:
Stephane Nicoll
2017-03-02 14:28:33 +01:00
parent 3d97ffda6e
commit 5cc569fc91
6 changed files with 42 additions and 0 deletions

View File

@@ -14,4 +14,11 @@
<management-enabled>true</management-enabled>
</cache>
<network>
<join>
<tcp-ip enabled="false"/>
<multicast enabled="false"/>
</join>
</network>
</hazelcast>