Eitan
Eitan
I removed the getX from the code and run the distributed pingPong example and the problem didn't happen.
Happened again when I started the client actor before the server
You can disable the carrier configuration usage in your client using: ``` java public void startClient() throws IOException { cluster = CouchbaseCluster.create(DefaultCouchbaseEnvironment.builder(). bootstrapCarrierEnabled(false).build(), Arrays.asList("127.0.0.1")); bucket = cluster.openBucket("default"); } ```
Hey @RomanGotsiy, thanks for an amazing tool. Regarding this bug, I tried to fix it by myself, but It involved to many changes so I chose to wait for your...