mirror of https://github.com/citusdata/citus.git
Fix one flaky failure test
parent
63626d4995
commit
479b2da740
|
@ -105,10 +105,10 @@ SELECT name FROM r1 WHERE id = 2;
|
||||||
|
|
||||||
-- verify a connection attempt was made to the intercepted node, this would have cause the
|
-- verify a connection attempt was made to the intercepted node, this would have cause the
|
||||||
-- connection to have been delayed and thus caused a timeout
|
-- connection to have been delayed and thus caused a timeout
|
||||||
SELECT citus.dump_network_traffic();
|
SELECT * FROM citus.dump_network_traffic() WHERE conn=0;
|
||||||
dump_network_traffic
|
conn | source | message
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
(0,coordinator,"[initial message]")
|
0 | coordinator | [initial message]
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
SELECT citus.mitmproxy('conn.allow()');
|
SELECT citus.mitmproxy('conn.allow()');
|
||||||
|
|
|
@ -66,7 +66,7 @@ SELECT name FROM r1 WHERE id = 2;
|
||||||
|
|
||||||
-- verify a connection attempt was made to the intercepted node, this would have cause the
|
-- verify a connection attempt was made to the intercepted node, this would have cause the
|
||||||
-- connection to have been delayed and thus caused a timeout
|
-- connection to have been delayed and thus caused a timeout
|
||||||
SELECT citus.dump_network_traffic();
|
SELECT * FROM citus.dump_network_traffic() WHERE conn=0;
|
||||||
|
|
||||||
SELECT citus.mitmproxy('conn.allow()');
|
SELECT citus.mitmproxy('conn.allow()');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue