This is an automated email from the ASF dual-hosted git repository. laszlog pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit f3fb58e23aa4b0b0ded0e1f018519cf01df3d4e1 Author: Saurabh Katiyal <[email protected]> AuthorDate: Thu Feb 22 17:02:30 2024 +0530 IMPALA-12830: test_webserver_hide_logs_link() could fail in the exhaustive build fixed order of "/hadoop-varz" test_web_pages.py for test "test_webserver_hide_logs_link()". In this test for links "/hadoop-varz" was added to expected_catalog_links[] as part of improvement IMPALA-9086 but order was conflicted with "/events" Change-Id: I042ae0464cfc3d13b74ff28099ad52ff53e19f74 Reviewed-on: http://gerrit.cloudera.org:8080/21053 Reviewed-by: Impala Public Jenkins <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- tests/custom_cluster/test_web_pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/custom_cluster/test_web_pages.py b/tests/custom_cluster/test_web_pages.py index 918e9fc84..f6f900bdb 100644 --- a/tests/custom_cluster/test_web_pages.py +++ b/tests/custom_cluster/test_web_pages.py @@ -247,8 +247,8 @@ class TestWebPage(CustomClusterTestSuite): expected_catalog_links = [ "/", "/catalog", - "/hadoop-varz", "/events", + "/hadoop-varz", "/jmx", "/log_level", "/memz",
