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

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

commit 95c52aa1a0b15778b5bffdf7f0ab53c7d0cbe304
Author: Riza Suminto <[email protected]>
AuthorDate: Tue Mar 18 09:54:10 2025 -0700

    IMPALA-13874: Fix typo in test_coord_only_pool_exec_groups
    
    Graceful shutdown following test_coord_only_pool_exec_groups completion
    produce FATAL log for trying to remove non-existing backend from
    per-host list. This is because the test has typo in executor group
    name (should be 'large' instead of small). This patch fix the typo.
    
    Testing:
    Manually run test_coord_only_pool_exec_groups exhaustively. Verified in
    all run that such fatal log or warning log from
    ExecutorGroup::CheckConsistencyOrWarn does not show up again.
    
    Change-Id: I6331e000c8c6481b1e569691f54fa2b7e3f3605a
    Reviewed-on: http://gerrit.cloudera.org:8080/22637
    Reviewed-by: Daniel Becker <[email protected]>
    Reviewed-by: Jason Fehr <[email protected]>
    Tested-by: Impala Public Jenkins <[email protected]>
---
 tests/custom_cluster/test_admission_controller.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/custom_cluster/test_admission_controller.py 
b/tests/custom_cluster/test_admission_controller.py
index c17e75676..dff30367c 100644
--- a/tests/custom_cluster/test_admission_controller.py
+++ b/tests/custom_cluster/test_admission_controller.py
@@ -2068,7 +2068,7 @@ class 
TestAdmissionController(TestAdmissionControllerBase):
     expected_num_impalads += 2
     self._start_impala_cluster(
         options=[
-            "--impalad_args=--executor_groups=root.group-set-small-group-000:2 
"
+            "--impalad_args=--executor_groups=root.group-set-large-group-000:2 
"
             + executor_flags],
         add_executors=True,
         cluster_size=2,

Reply via email to