Skip to content

Commit 193fb86

Browse files
committed
fix
1 parent 4089a29 commit 193fb86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ydb/core/tx/replication/controller/util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ inline bool IsRetryableError(const NYdb::TStatus status, const TVector<NYdb::ESt
4343
return false;
4444
case NYdb::EStatus::TRANSPORT_UNAVAILABLE:
4545
for (const auto& issue : status.GetIssues()) {
46-
if (issue.GetMessage().contains("Misformatted domain name") || issue.GetMessage().contains("Domain name not found")) {
46+
if (issue.GetMessage().contains("Misformatted domain name") || issue.GetMessage().contains("Domain name not found") || issue.GetMessage().contains("DNS resolution failed")) {
4747
return false;
4848
}
4949
}

ydb/tests/stress/transfer/tests/test_workload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def setup_class(cls):
2323
def teardown_class(cls):
2424
cls.cluster.stop()
2525

26-
@pytest.mark.parametrize("store_type", ["row", "column"])
26+
@pytest.mark.parametrize("store_type", ["row"])
2727
def test(self, store_type):
2828
cmd = [
2929
yatest.common.binary_path(os.getenv("YDB_TEST_PATH")),

0 commit comments

Comments
 (0)