Hi!
I'm running in a development environment with one Hazelcast node. This node I connect to from my Wildfly application server (a webapp).
If I terminate/shutdown the node and start it again while the application server is running, then the application server's client is not able to reconnect the node. It fails with the following exception:
Exception caught when handling a web request: com.hazelcast.core.HazelcastInstanceNotActiveException: Hazelcast instance is not active!
at com.hazelcast.client.impl.HazelcastClientProxy.getClient(HazelcastClientProxy.java:270)
at com.hazelcast.client.impl.HazelcastClientProxy.getMap(HazelcastClientProxy.java:113)
Is this expected behaviour? If so, could it be changed using properties? Or must I check LifeCycleService.isRunning() before every usage of the client? and if it's not running create a new client?
I'm running 3.6.2
Thanks for any help