This commit is contained in:
kssenii 2024-02-01 12:35:01 +01:00
parent b3418c506e
commit 3a16427e00
2 changed files with 1 additions and 2 deletions

View File

@ -161,7 +161,6 @@ StorageS3Queue::StorageS3Queue(
}
catch (...)
{
S3QueueMetadataFactory::instance().remove(zk_path);
throw;
}

View File

@ -541,7 +541,7 @@ def test_multiple_tables_meta_mismatch(started_cluster):
)
except QueryRuntimeException as e:
assert (
"Metadata with the same `s3queue_zookeeper_path` was already created but with different settings"
"Existing table metadata in ZooKeeper differs in engine mode"
in str(e)
)
failed = True