ACCUMULO-2925 Remove inadvertently deleted log message
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/cc7f91b0 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/cc7f91b0 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/cc7f91b0 Branch: refs/heads/master Commit: cc7f91b0b23db6addfb05e7d443235fe4e46124e Parents: 03c93c9 Author: Josh Elser <[email protected]> Authored: Thu Jun 19 17:41:06 2014 -0700 Committer: Josh Elser <[email protected]> Committed: Thu Jun 19 17:41:06 2014 -0700 ---------------------------------------------------------------------- server/master/src/main/java/org/apache/accumulo/master/Master.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/cc7f91b0/server/master/src/main/java/org/apache/accumulo/master/Master.java ---------------------------------------------------------------------- diff --git a/server/master/src/main/java/org/apache/accumulo/master/Master.java b/server/master/src/main/java/org/apache/accumulo/master/Master.java index 820db5d..113511a 100644 --- a/server/master/src/main/java/org/apache/accumulo/master/Master.java +++ b/server/master/src/main/java/org/apache/accumulo/master/Master.java @@ -1018,6 +1018,8 @@ public class Master implements LiveTServerSet.Listener, TableObserver, CurrentSt replicationCoordinatorProcessor, "Master Replication Coordinator", "Replication Coordinator", null, Property.MASTER_REPLICATION_COORDINATOR_MINTHREADS, Property.MASTER_REPLICATION_COORDINATOR_THREADCHECK, Property.GENERAL_MAX_MESSAGE_SIZE); + log.info("Started replication coordinator service at " + replAddress.address); + // Advertise that port we used so peers don't have to be told what it is ZooReaderWriter.getInstance().putPersistentData(ZooUtil.getRoot(instance) + Constants.ZMASTER_REPLICATION_COORDINATOR_ADDR, replAddress.address.toString().getBytes(StandardCharsets.UTF_8), NodeExistsPolicy.OVERWRITE);
