You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by br...@apache.org on 2019/12/04 00:54:38 UTC

[hbase] branch branch-2.2 updated: HBASE-22096 /storeFile.jsp shows CorruptHFileException when the storeFile is a reference file (addendum)

This is an automated email from the ASF dual-hosted git repository.

brfrn169 pushed a commit to branch branch-2.2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.2 by this push:
     new 3b0d223  HBASE-22096 /storeFile.jsp shows CorruptHFileException when the storeFile is a reference file (addendum)
3b0d223 is described below

commit 3b0d22375d375abf8208e74b290250db3dfc23d3
Author: Toshihiro Suzuki <br...@gmail.com>
AuthorDate: Wed Dec 4 09:26:15 2019 +0900

    HBASE-22096 /storeFile.jsp shows CorruptHFileException when the storeFile is a reference file (addendum)
    
    Signed-off-by: Sean Busbey <bu...@apache.org>
---
 .../src/main/resources/hbase-webapps/regionserver/storeFile.jsp         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-server/src/main/resources/hbase-webapps/regionserver/storeFile.jsp b/hbase-server/src/main/resources/hbase-webapps/regionserver/storeFile.jsp
index b538cb7..5c0a4e1 100644
--- a/hbase-server/src/main/resources/hbase-webapps/regionserver/storeFile.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/regionserver/storeFile.jsp
@@ -54,7 +54,7 @@
      printer.setConf(conf);
      String[] options = {"-s"};
      printer.parseOptions(options);
-     StoreFileInfo sfi = new StoreFileInfo(conf, fs, new Path(storeFile), true);
+     StoreFileInfo sfi = new StoreFileInfo(conf, fs, new Path(storeFile));
      printer.processFile(sfi.getFileStatus().getPath(), true);
      String text = byteStream.toString();%>
      <%=