We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59476dd commit 60b13cdCopy full SHA for 60b13cd
hazelcast/src/hazelcast/client/spi.cpp
@@ -3006,6 +3006,15 @@ cluster_view_listener::try_register(
3006
return;
3007
}
3008
3009
+ try {
3010
+ f.get();
3011
+ } catch (exception::hazelcast_client_not_active& e) {
3012
+ /**
3013
+ * If client is shutdown, we should not retry for another
3014
+ * connection
3015
+ * */
3016
+ return;
3017
+ }
3018
// completes with exception, listener needs to be reregistered
3019
self->try_reregister_to_random_connection(conn_id);
3020
});
0 commit comments