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"); } ```