Updated Branches: refs/heads/master c8999e693 -> 61d00d47d
ACCUMULO-1846 Fix ClassNotFoundException for default log closer Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/61d00d47 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/61d00d47 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/61d00d47 Branch: refs/heads/master Commit: 61d00d47ddca609a3cff37bdca9140cc8457ba20 Parents: c8999e6 Author: Christopher Tubbs <ctubb...@apache.org> Authored: Sat Nov 2 02:27:49 2013 -0400 Committer: Christopher Tubbs <ctubb...@apache.org> Committed: Sat Nov 2 02:27:49 2013 -0400 ---------------------------------------------------------------------- core/src/main/java/org/apache/accumulo/core/conf/Property.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/61d00d47/core/src/main/java/org/apache/accumulo/core/conf/Property.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/conf/Property.java b/core/src/main/java/org/apache/accumulo/core/conf/Property.java index a89dff8..b915ee4 100644 --- a/core/src/main/java/org/apache/accumulo/core/conf/Property.java +++ b/core/src/main/java/org/apache/accumulo/core/conf/Property.java @@ -140,7 +140,7 @@ public enum Property { "When a tablet server's lock is deleted, it takes time for it to completely quit. This delay gives it time before log recoveries begin."), MASTER_LEASE_RECOVERY_WAITING_PERIOD("master.lease.recovery.interval", "5s", PropertyType.TIMEDURATION, "The amount of time to wait after requesting a WAL file to be recovered"), - MASTER_WALOG_CLOSER_IMPLEMETATION("master.walog.closer.implementation", "org.apache.accumulo.master.recovery.HadoopLogCloser", PropertyType.CLASSNAME, + MASTER_WALOG_CLOSER_IMPLEMETATION("master.walog.closer.implementation", "org.apache.accumulo.server.master.recovery.HadoopLogCloser", PropertyType.CLASSNAME, "A class that implements a mechansim to steal write access to a file"), MASTER_FATE_THREADPOOL_SIZE("master.fate.threadpool.size", "4", PropertyType.COUNT, "The number of threads used to run FAult-Tolerant Executions. These are primarily table operations like merge."),