diff options
author | kvk1920 <kvk1920@yandex-team.com> | 2024-05-23 13:33:56 +0300 |
---|---|---|
committer | kvk1920 <kvk1920@yandex-team.com> | 2024-05-23 13:47:07 +0300 |
commit | 9f108c885d4431f62dc2c5fdc61f1f16caa16566 (patch) | |
tree | 4d40e062c989a8470d69bf3ea864c203ef2fe0d9 /yt/python | |
parent | b94816f2468c7644ab4c92ad7d3e0e7fa113968b (diff) | |
download | ydb-9f108c885d4431f62dc2c5fdc61f1f16caa16566.tar.gz |
Use mirrored Cypress tx in tests
447630a98133ef6f60263ea998721a86e0affead
Diffstat (limited to 'yt/python')
-rw-r--r-- | yt/python/yt/common.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/yt/python/yt/common.py b/yt/python/yt/common.py index 6b1730720a..e2c96a80ff 100644 --- a/yt/python/yt/common.py +++ b/yt/python/yt/common.py @@ -336,31 +336,31 @@ class YtError(Exception): return self.find_matching_error(predicate=pred_new) or self.find_matching_error(predicate=pred_old) def is_row_is_blocked(self): - """Row is blocked""" + """Row is blocked.""" return self.contains_code(1712) def is_blocked_row_wait_timeout(self): - """Timed out waiting on blocked row""" + """Timed out waiting on blocked row.""" return self.contains_code(1713) def is_chunk_not_preloaded(self): - """Chunk data is not preloaded yet""" + """Chunk data is not preloaded yet.""" return self.contains_code(1735) def is_no_in_sync_replicas(self): - """No in-sync replicas found""" + """No in-sync replicas found.""" return self.contains_code(1736) def is_already_present_in_group(self): - """Member is already present in group""" + """Member is already present in group.""" return self.contains_code(908) def is_prohibited_cross_cell_copy(self): - """Cross-cell "copy"/"move" command is explicitly disabled""" + """Cross-cell "copy"/"move" command is explicitly disabled.""" return self.contains_code(1002) def is_sequoia_retriable_error(self): - """Probably lock conflict in Sequoia tables""" + """Probably lock conflict in Sequoia tables.""" return self.contains_code(6002) |