diff options
author | robot-piglet <[email protected]> | 2025-02-20 15:08:47 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-02-20 15:19:36 +0300 |
commit | eaa19c67b7dca49f1429a737b4d03ac50dae2716 (patch) | |
tree | 269bfa8cf57092b48316ad9b3153213f9ee39d08 | |
parent | 6515853a4f889c04c1c4e6ba1040426a2ea5aad2 (diff) |
Intermediate changes
commit_hash:09e2f46a2edbdcbcbac13a14a6e47d96fc88f66e
-rw-r--r-- | contrib/python/ydb/py2/.dist-info/METADATA | 2 | ||||
-rw-r--r-- | contrib/python/ydb/py2/ya.make | 2 | ||||
-rw-r--r-- | contrib/python/ydb/py2/ydb/import_client.py | 5 | ||||
-rw-r--r-- | contrib/python/ydb/py2/ydb/ydb_version.py | 2 |
4 files changed, 7 insertions, 4 deletions
diff --git a/contrib/python/ydb/py2/.dist-info/METADATA b/contrib/python/ydb/py2/.dist-info/METADATA index 1efcb264c48..8ce51199d90 100644 --- a/contrib/python/ydb/py2/.dist-info/METADATA +++ b/contrib/python/ydb/py2/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: ydb -Version: 2.15.1 +Version: 2.15.2 Summary: YDB Python SDK Home-page: http://github.com/ydb-platform/ydb-python-sdk Author: Yandex LLC diff --git a/contrib/python/ydb/py2/ya.make b/contrib/python/ydb/py2/ya.make index f88f9354026..a339cb2916f 100644 --- a/contrib/python/ydb/py2/ya.make +++ b/contrib/python/ydb/py2/ya.make @@ -2,7 +2,7 @@ PY2_LIBRARY() -VERSION(2.15.1) +VERSION(2.15.2) LICENSE(Apache-2.0) diff --git a/contrib/python/ydb/py2/ydb/import_client.py b/contrib/python/ydb/py2/ydb/import_client.py index a11d77a0c68..9d7d4351370 100644 --- a/contrib/python/ydb/py2/ydb/import_client.py +++ b/contrib/python/ydb/py2/ydb/import_client.py @@ -31,7 +31,10 @@ class ImportProgress(enum.IntEnum): def _initialize_progresses(): for key, value in ydb_import_pb2.ImportProgress.Progress.items(): - _progresses[value] = getattr(ImportProgress, key[len("PROGRESS_") :]) + try: + _progresses[value] = getattr(ImportProgress, key[len("PROGRESS_") :]) + except Exception: + pass _initialize_progresses() diff --git a/contrib/python/ydb/py2/ydb/ydb_version.py b/contrib/python/ydb/py2/ydb/ydb_version.py index c85cca1e488..2d5adec9236 100644 --- a/contrib/python/ydb/py2/ydb/ydb_version.py +++ b/contrib/python/ydb/py2/ydb/ydb_version.py @@ -1 +1 @@ -VERSION = "2.15.1" +VERSION = "2.15.2" |