Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
Impala 4.2.0
-
None
-
ghx-label-8
Description
On docker-based tests, the task that runs the custom cluster tests also runs a basic test for run-workload.py. In order for that test to succeed, the Impala cluster needs to already be running.
So, this code for starting the Impala cluster should also run when CLUSTER_TEST=true (i.e. include it in the outer if):
if [[ "$BE_TEST" == true || "$FE_TEST" == true || "$EE_TEST" == true || "$JDBC_TEST" == true ]]; then if [[ $i == 1 || "$CLUSTER_TEST" == true ]]; then start_impala_cluster fi fi