diff options
| author | robot-piglet <[email protected]> | 2026-01-22 15:52:32 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2026-01-22 16:19:03 +0300 |
| commit | dd1b830d3a657dc5896bf739b0653f528a8b99cb (patch) | |
| tree | 10603c14477bda115a0bd052595369e5d002120e /contrib/python | |
| parent | 885c561d4f4986b34a4d7bcc2910f3ee74bc8e97 (diff) | |
Intermediate changes
commit_hash:7454473ff62bff835b1b398cd4538dbfdd168dd4
Diffstat (limited to 'contrib/python')
| -rw-r--r-- | contrib/python/ydb/py3/.dist-info/METADATA | 2 | ||||
| -rw-r--r-- | contrib/python/ydb/py3/ya.make | 2 | ||||
| -rw-r--r-- | contrib/python/ydb/py3/ydb/aio/query/session.py | 2 | ||||
| -rw-r--r-- | contrib/python/ydb/py3/ydb/query/session.py | 2 | ||||
| -rw-r--r-- | contrib/python/ydb/py3/ydb/ydb_version.py | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/contrib/python/ydb/py3/.dist-info/METADATA b/contrib/python/ydb/py3/.dist-info/METADATA index 3fa8e8a3c86..1bda34f0be5 100644 --- a/contrib/python/ydb/py3/.dist-info/METADATA +++ b/contrib/python/ydb/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: ydb -Version: 3.23.2 +Version: 3.23.3 Summary: YDB Python SDK Home-page: http://github.com/ydb-platform/ydb-python-sdk Author: Yandex LLC diff --git a/contrib/python/ydb/py3/ya.make b/contrib/python/ydb/py3/ya.make index 06a67ec484f..4a478b2e25b 100644 --- a/contrib/python/ydb/py3/ya.make +++ b/contrib/python/ydb/py3/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(3.23.2) +VERSION(3.23.3) LICENSE(Apache-2.0) diff --git a/contrib/python/ydb/py3/ydb/aio/query/session.py b/contrib/python/ydb/py3/ydb/aio/query/session.py index 01e6bb27c8a..15ae611d3d4 100644 --- a/contrib/python/ydb/py3/ydb/aio/query/session.py +++ b/contrib/python/ydb/py3/ydb/aio/query/session.py @@ -55,7 +55,7 @@ class QuerySession(BaseQuerySession): DEFAULT_INITIAL_RESPONSE_TIMEOUT, ) if first_response.status != issues.StatusCode.SUCCESS: - raise RuntimeError("Failed to attach session") + issues._process_response(first_response) except Exception as e: self._state.reset() self._status_stream.cancel() diff --git a/contrib/python/ydb/py3/ydb/query/session.py b/contrib/python/ydb/py3/ydb/query/session.py index 4823b15ec90..0209308d323 100644 --- a/contrib/python/ydb/py3/ydb/query/session.py +++ b/contrib/python/ydb/py3/ydb/query/session.py @@ -255,7 +255,7 @@ class QuerySession(BaseQuerySession): first_resp_timeout, ) if first_response.status != issues.StatusCode.SUCCESS: - raise RuntimeError("Failed to attach session") + issues._process_response(first_response) except Exception as e: self._state.reset() status_stream.cancel() diff --git a/contrib/python/ydb/py3/ydb/ydb_version.py b/contrib/python/ydb/py3/ydb/ydb_version.py index 1709a8f109d..40f0f6699e6 100644 --- a/contrib/python/ydb/py3/ydb/ydb_version.py +++ b/contrib/python/ydb/py3/ydb/ydb_version.py @@ -1 +1 @@ -VERSION = "3.23.2" +VERSION = "3.23.3" |
