From 6769ea4845cfd11ce3ce4b0f6e85ff3a7719c2e3 Mon Sep 17 00:00:00 2001 From: Rene Cannao Date: Mon, 23 Mar 2026 09:28:26 +0000 Subject: [PATCH] Make legacy/pre-proxysql.bash a no-op --- test/tap/groups/legacy/pre-proxysql.bash | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/test/tap/groups/legacy/pre-proxysql.bash b/test/tap/groups/legacy/pre-proxysql.bash index 161027dbe..136b97795 100755 --- a/test/tap/groups/legacy/pre-proxysql.bash +++ b/test/tap/groups/legacy/pre-proxysql.bash @@ -1,18 +1,3 @@ #!/usr/bin/env bash -set -e -set -o pipefail -# -# Legacy pre-proxysql hook. -# -# Cluster startup is now handled by start-proxysql-isolated.bash. -# This hook only needs to wait for the cluster to stabilize. -# - -NUM_NODES=${PROXYSQL_CLUSTER_NODES:-9} -if [[ "${SKIP_CLUSTER_START}" == "1" ]] || [[ "${SKIP_CLUSTER_START}" == "true" ]] || [[ "${NUM_NODES}" == "0" ]]; then - echo "[$(date '+%Y-%m-%d %H:%M:%S')] >>> Pre-proxysql: no cluster, nothing to do." - exit 0 -fi - -echo "[$(date '+%Y-%m-%d %H:%M:%S')] >>> Pre-proxysql: waiting for cluster to stabilize..." -sleep 10 +# No-op: cluster startup is handled by start-proxysql-isolated.bash +exit 0