diff --git a/src/Common/Config/ConfigProcessor.cpp b/src/Common/Config/ConfigProcessor.cpp index 78f065bcae1..c0b7b176b33 100644 --- a/src/Common/Config/ConfigProcessor.cpp +++ b/src/Common/Config/ConfigProcessor.cpp @@ -514,7 +514,7 @@ XMLDocumentPtr ConfigProcessor::processConfig( else { /// These embedded files added during build with some cmake magic. - /// Look at the end of programs/sever/CMakeLists.txt. + /// Look at the end of programs/server/CMakeLists.txt. std::string embedded_name; if (path == "config.xml") embedded_name = "embedded.xml"; diff --git a/tests/integration/test_storage_postgresql_replica/test.py b/tests/integration/test_storage_postgresql_replica/test.py index aca33816d75..741cd2bd521 100644 --- a/tests/integration/test_storage_postgresql_replica/test.py +++ b/tests/integration/test_storage_postgresql_replica/test.py @@ -697,6 +697,11 @@ def test_abrupt_connection_loss_while_heavy_replication(started_cluster): def test_abrupt_server_restart_while_heavy_replication(started_cluster): + + # FIXME (kssenii) temporary disabled + if instance.is_built_with_address_sanitizer(): + pytest.skip("Temporary disabled (FIXME)") + conn = get_postgres_conn( ip=started_cluster.postgres_ip, port=started_cluster.postgres_port,