Fix one flaky failure test (#5528)

Removes flaky test
pull/5531/head
Hanefi Onaldi 2021-12-15 18:59:58 +03:00 committed by GitHub
parent 29e4516642
commit acdcd9422c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 12 deletions

View File

@ -141,14 +141,6 @@ SELECT count(*) FROM products;
0
(1 row)
-- use OFFSET 1 to prevent printing the line where source
-- is the worker, and LIMIT 1 in case there were multiple connections
SELECT citus.dump_network_traffic() ORDER BY 1 LIMIT 1 OFFSET 1;
dump_network_traffic
---------------------------------------------------------------------
(1,coordinator,"[initial message]")
(1 row)
SELECT citus.mitmproxy('conn.allow()');
mitmproxy
---------------------------------------------------------------------

View File

@ -80,10 +80,6 @@ SELECT citus.mitmproxy('conn.delay(500)');
SELECT count(*) FROM products;
SELECT count(*) FROM products;
-- use OFFSET 1 to prevent printing the line where source
-- is the worker, and LIMIT 1 in case there were multiple connections
SELECT citus.dump_network_traffic() ORDER BY 1 LIMIT 1 OFFSET 1;
SELECT citus.mitmproxy('conn.allow()');
SET citus.shard_replication_factor TO 1;
CREATE TABLE single_replicatated(key int);