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 2014/01/22 18:05:32 UTC

git commit: ACCUMULO-2206 remove the LogEntry properly when no mutations are applied to a tablet

Updated Branches:
  refs/heads/1.6.0-SNAPSHOT 3931cceb1 -> e57795cc2


ACCUMULO-2206 remove the LogEntry properly when no mutations are applied to a tablet


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

Branch: refs/heads/1.6.0-SNAPSHOT
Commit: e57795cc2cfe37e14ec8f29f02e35642feeeb888
Parents: 3931cce
Author: Eric Newton <er...@gmail.com>
Authored: Wed Jan 22 12:05:24 2014 -0500
Committer: Eric Newton <er...@gmail.com>
Committed: Wed Jan 22 12:05:30 2014 -0500

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


http://git-wip-us.apache.org/repos/asf/accumulo/blob/e57795cc/server/base/src/main/java/org/apache/accumulo/server/util/MetadataTableUtil.java
----------------------------------------------------------------------
diff --git a/server/base/src/main/java/org/apache/accumulo/server/util/MetadataTableUtil.java b/server/base/src/main/java/org/apache/accumulo/server/util/MetadataTableUtil.java
index 8a2fe3b..158157b 100644
--- a/server/base/src/main/java/org/apache/accumulo/server/util/MetadataTableUtil.java
+++ b/server/base/src/main/java/org/apache/accumulo/server/util/MetadataTableUtil.java
@@ -613,7 +613,7 @@ public class MetadataTableUtil {
     } else {
       Mutation m = new Mutation(extent.getMetadataEntry());
       for (LogEntry entry : logEntries) {
-        m.putDelete(LogColumnFamily.NAME, new Text(entry.toString()));
+        m.putDelete(LogColumnFamily.NAME, new Text(entry.getName()));
       }
       update(SystemCredentials.get(), zooLock, m, extent);
     }