From e3cc4afdf714e7962ff61475dd9c6a450e12f80a Mon Sep 17 00:00:00 2001 From: Alexander Tokmakov Date: Wed, 8 Jun 2022 14:13:57 +0300 Subject: [PATCH 1/3] Update test.py --- tests/integration/test_storage_postgresql_replica/test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_storage_postgresql_replica/test.py b/tests/integration/test_storage_postgresql_replica/test.py index 863298ccfb6..64f41022aef 100644 --- a/tests/integration/test_storage_postgresql_replica/test.py +++ b/tests/integration/test_storage_postgresql_replica/test.py @@ -545,6 +545,7 @@ def test_connection_loss(started_cluster): @pytest.mark.timeout(320) def test_clickhouse_restart(started_cluster): + pytest.skip("Temporary disabled (FIXME)") conn = get_postgres_conn( ip=started_cluster.postgres_ip, port=started_cluster.postgres_port, From 627af2a56bd6a578a0ecb96ff7d4fdec28c187d0 Mon Sep 17 00:00:00 2001 From: Alexander Tokmakov Date: Wed, 8 Jun 2022 14:29:35 +0300 Subject: [PATCH 2/3] Update test.py --- .../test_postgresql_replica_database_engine_1/test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/test_postgresql_replica_database_engine_1/test.py b/tests/integration/test_postgresql_replica_database_engine_1/test.py index 45aa59001ef..3b3749b86cd 100644 --- a/tests/integration/test_postgresql_replica_database_engine_1/test.py +++ b/tests/integration/test_postgresql_replica_database_engine_1/test.py @@ -766,6 +766,7 @@ def test_concurrent_transactions(started_cluster): def test_abrupt_connection_loss_while_heavy_replication(started_cluster): + pytest.skip("Temporary disabled (FIXME)") def transaction(thread_id): if thread_id % 2: conn = get_postgres_conn( @@ -841,6 +842,7 @@ def test_restart_server_while_replication_startup_not_finished(started_cluster): def test_abrupt_server_restart_while_heavy_replication(started_cluster): + pytest.skip("Temporary disabled (FIXME)") def transaction(thread_id): if thread_id % 2: conn = get_postgres_conn( From 0186143792345710cd25ea55ed6335fb95eae961 Mon Sep 17 00:00:00 2001 From: Alexander Tokmakov Date: Wed, 8 Jun 2022 15:49:37 +0300 Subject: [PATCH 3/3] Update test.py --- .../test_postgresql_replica_database_engine_1/test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/test_postgresql_replica_database_engine_1/test.py b/tests/integration/test_postgresql_replica_database_engine_1/test.py index 3b3749b86cd..e7b642b5028 100644 --- a/tests/integration/test_postgresql_replica_database_engine_1/test.py +++ b/tests/integration/test_postgresql_replica_database_engine_1/test.py @@ -767,6 +767,7 @@ def test_concurrent_transactions(started_cluster): def test_abrupt_connection_loss_while_heavy_replication(started_cluster): pytest.skip("Temporary disabled (FIXME)") + def transaction(thread_id): if thread_id % 2: conn = get_postgres_conn( @@ -843,6 +844,7 @@ def test_restart_server_while_replication_startup_not_finished(started_cluster): def test_abrupt_server_restart_while_heavy_replication(started_cluster): pytest.skip("Temporary disabled (FIXME)") + def transaction(thread_id): if thread_id % 2: conn = get_postgres_conn(