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 2015/05/14 15:14:44 UTC

[1/2] accumulo git commit: ACCUMULO-3809 use tableId, not KeyExtent for report

Repository: accumulo
Updated Branches:
  refs/heads/master 280361245 -> 651c6aed0


ACCUMULO-3809 use tableId, not KeyExtent for report


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

Branch: refs/heads/master
Commit: 3f53e0d197daaddf06958d51a78c08b81fc66c4d
Parents: b347440
Author: Eric Newton <er...@gmail.com>
Authored: Thu May 14 09:12:14 2015 -0400
Committer: Eric Newton <er...@gmail.com>
Committed: Thu May 14 09:13:56 2015 -0400

----------------------------------------------------------------------
 .../src/main/java/org/apache/accumulo/tserver/FileManager.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/3f53e0d1/server/tserver/src/main/java/org/apache/accumulo/tserver/FileManager.java
----------------------------------------------------------------------
diff --git a/server/tserver/src/main/java/org/apache/accumulo/tserver/FileManager.java b/server/tserver/src/main/java/org/apache/accumulo/tserver/FileManager.java
index f8d0280..d6350aa 100644
--- a/server/tserver/src/main/java/org/apache/accumulo/tserver/FileManager.java
+++ b/server/tserver/src/main/java/org/apache/accumulo/tserver/FileManager.java
@@ -320,7 +320,7 @@ public class FileManager {
         readersReserved.put(reader, file);
       } catch (Exception e) {
 
-        ProblemReports.getInstance(context).report(new ProblemReport(tablet.toString(), ProblemType.FILE_READ, file, e));
+        ProblemReports.getInstance(context).report(new ProblemReport(tablet.getTableId().toString(), ProblemType.FILE_READ, file, e));
 
         if (continueOnFailure) {
           // release the permit for the file that failed to open


[2/2] accumulo git commit: Merge branch '1.7'

Posted by ec...@apache.org.
Merge branch '1.7'


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

Branch: refs/heads/master
Commit: 651c6aed0396eff67b9c9bfd2174e1611ec78039
Parents: 2803612 3f53e0d
Author: Eric Newton <er...@gmail.com>
Authored: Thu May 14 09:14:10 2015 -0400
Committer: Eric Newton <er...@gmail.com>
Committed: Thu May 14 09:14:10 2015 -0400

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

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