Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 854BF10746 for ; Thu, 14 May 2015 13:14:27 +0000 (UTC) Received: (qmail 21680 invoked by uid 500); 14 May 2015 13:14:27 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 21646 invoked by uid 500); 14 May 2015 13:14:27 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 21634 invoked by uid 99); 14 May 2015 13:14:27 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 May 2015 13:14:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 37B98E051A; Thu, 14 May 2015 13:14:27 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ecn@apache.org To: commits@accumulo.apache.org Message-Id: <79de8fb3a22e46b5a4521b6fd45707bb@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: accumulo git commit: ACCUMULO-3809 use tableId, not KeyExtent for report Date: Thu, 14 May 2015 13:14:27 +0000 (UTC) Repository: accumulo Updated Branches: refs/heads/1.7 b34744086 -> 3f53e0d19 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/1.7 Commit: 3f53e0d197daaddf06958d51a78c08b81fc66c4d Parents: b347440 Author: Eric Newton Authored: Thu May 14 09:12:14 2015 -0400 Committer: Eric Newton 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