Address masterAddress = node.getMasterAddress();
if (masterAddress == null) {
logger.info("Cannot send master answer to " + target + " since master node is not known yet");
return;
}
SetMasterOperation op = new SetMasterOperation(masterAddress);
nodeEngine.getOperationService().send(op, target);
}