You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/08/07 16:12:51 UTC

[1/2] git commit: ACCUMULO-1630 use passed cmd-line parameter

Updated Branches:
  refs/heads/master 573445599 -> f23e943f9


ACCUMULO-1630 use passed cmd-line parameter


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/fb6b3c35
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/fb6b3c35
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/fb6b3c35

Branch: refs/heads/master
Commit: fb6b3c3573183b949c1cddfabd5884e30361bd9f
Parents: 6eddb39
Author: Eric Newton <ec...@apache.org>
Authored: Wed Aug 7 10:08:09 2013 -0400
Committer: Eric Newton <ec...@apache.org>
Committed: Wed Aug 7 10:08:09 2013 -0400

----------------------------------------------------------------------
 .../java/org/apache/accumulo/server/gc/SimpleGarbageCollector.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/fb6b3c35/server/src/main/java/org/apache/accumulo/server/gc/SimpleGarbageCollector.java
----------------------------------------------------------------------
diff --git a/server/src/main/java/org/apache/accumulo/server/gc/SimpleGarbageCollector.java b/server/src/main/java/org/apache/accumulo/server/gc/SimpleGarbageCollector.java
index 4bc18ec..4278f5b 100644
--- a/server/src/main/java/org/apache/accumulo/server/gc/SimpleGarbageCollector.java
+++ b/server/src/main/java/org/apache/accumulo/server/gc/SimpleGarbageCollector.java
@@ -157,7 +157,7 @@ public class SimpleGarbageCollector implements Iface {
     if (opts.verbose)
       gc.setVerbose();
     if (opts.address != null)
-      gc.useAddress(address);
+      gc.useAddress(opts.address);
     
     gc.init(fs, instance, SecurityConstants.getSystemCredentials(), serverConf.getConfiguration().getBoolean(Property.GC_TRASH_IGNORE));
     Accumulo.enableTracing(address, "gc");


[2/2] git commit: ACCUMULO-1630 use passed cmd-line parameter

Posted by ec...@apache.org.
ACCUMULO-1630 use passed cmd-line parameter


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/f23e943f
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/f23e943f
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/f23e943f

Branch: refs/heads/master
Commit: f23e943f9949e96aced9bc63fe929b67f2005c18
Parents: 5734455 fb6b3c3
Author: Eric Newton <ec...@apache.org>
Authored: Wed Aug 7 10:13:00 2013 -0400
Committer: Eric Newton <ec...@apache.org>
Committed: Wed Aug 7 10:13:00 2013 -0400

----------------------------------------------------------------------

----------------------------------------------------------------------