I just found out my vertx cluster configuration with 'hazelcast.config' system property from the command line did not work as expected (cluster created, but not properly registered with vertx) and filed a PR and issue (no 36) on vertx-hazelcast project to support it from version 3.3.0 onwards.
Found your project while doing a search on Github on usages. I didn't check and you are using it differently, but you might verify if it is indeed working the way it should.
I am referring to this file:
|
System.setProperty("hazelcast.config", new File(clusterConfig).getAbsolutePath()); |
I just found out my vertx cluster configuration with 'hazelcast.config' system property from the command line did not work as expected (cluster created, but not properly registered with vertx) and filed a PR and issue (no 36) on vertx-hazelcast project to support it from version
3.3.0onwards.Found your project while doing a search on Github on usages. I didn't check and you are using it differently, but you might verify if it is indeed working the way it should.
I am referring to this file:
wisdom/core/wisdom-vertx-engine/src/main/java/org/wisdom/framework/vertx/VertxSingleton.java
Line 85 in 1156768