You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by st...@apache.org on 2020/10/02 00:12:51 UTC

[impala] 01/02: IMPALA-10200: WebUI static directory cleanup

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

stakiar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git

commit fd00efb32342b8201f20fd6d38ab773adebd3621
Author: Tamas Mate <tm...@cloudera.com>
AuthorDate: Thu Oct 1 10:59:24 2020 +0200

    IMPALA-10200: WebUI static directory cleanup
    
    This change removes the unused index.html file from the static
    directory. The page only contained a simple "Impala Webserver" header
    but it was renderable and therefore could have been misleading.
    After removal, the static www/ endpoint returns the expected "Directory
    Listing Denied" error.
    
    Testing:
     - Manually tested the WebUI without www/index.html
    
    Change-Id: I108bb4c6a371b6d1ec157d54ac078604b243ecc2
    Reviewed-on: http://gerrit.cloudera.org:8080/16528
    Reviewed-by: Csaba Ringhofer <cs...@cloudera.com>
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
---
 bin/rat_exclude_files.txt | 1 -
 www/index.html            | 5 -----
 2 files changed, 6 deletions(-)

diff --git a/bin/rat_exclude_files.txt b/bin/rat_exclude_files.txt
index c7e64ba..26ec90d 100644
--- a/bin/rat_exclude_files.txt
+++ b/bin/rat_exclude_files.txt
@@ -21,7 +21,6 @@ ssh_keys/id_rsa_impala
 testdata/__init__.py
 tests/__init__.py
 bin/diagnostics/__init__.py
-www/index.html
 lib/python/impala_py_lib/__init__.py
 lib/python/impala_py_lib/jenkins/__init__.py
 shell/packaging/MANIFEST.in
diff --git a/www/index.html b/www/index.html
deleted file mode 100644
index 75110c6..0000000
--- a/www/index.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<html>
-<body>
-<h1>Impala Webserver</h1>
-</body>
-</html>