diff --git a/src/test/regress/expected/failure_connection_establishment.out b/src/test/regress/expected/failure_connection_establishment.out index d30e390e3..d032755dd 100644 --- a/src/test/regress/expected/failure_connection_establishment.out +++ b/src/test/regress/expected/failure_connection_establishment.out @@ -396,15 +396,6 @@ SELECT * FROM citus_check_cluster_node_health(); localhost | 57637 | localhost | 57637 | t (4 rows) --- cancel all connections to this node -SELECT citus.mitmproxy('conn.onAuthenticationOk().cancel(' || pg_backend_pid() || ')'); - mitmproxy ---------------------------------------------------------------------- - -(1 row) - -SELECT * FROM citus_check_cluster_node_health(); -ERROR: canceling statement due to user request -- kill connection checks to this node SELECT citus.mitmproxy('conn.onQuery(query="^SELECT 1$").kill()'); mitmproxy diff --git a/src/test/regress/sql/failure_connection_establishment.sql b/src/test/regress/sql/failure_connection_establishment.sql index 1817e3199..5f364cacc 100644 --- a/src/test/regress/sql/failure_connection_establishment.sql +++ b/src/test/regress/sql/failure_connection_establishment.sql @@ -181,10 +181,6 @@ SELECT * FROM citus_check_cluster_node_health(); SELECT citus.mitmproxy('conn.onAuthenticationOk().kill()'); SELECT * FROM citus_check_cluster_node_health(); --- cancel all connections to this node -SELECT citus.mitmproxy('conn.onAuthenticationOk().cancel(' || pg_backend_pid() || ')'); -SELECT * FROM citus_check_cluster_node_health(); - -- kill connection checks to this node SELECT citus.mitmproxy('conn.onQuery(query="^SELECT 1$").kill()'); SELECT * FROM citus_check_cluster_node_health();