Skip to content

Commit 47c84a5

Browse files
robot-pigletKamil Khamitov
authored andcommitted
Intermediate changes
commit_hash:09e2f46a2edbdcbcbac13a14a6e47d96fc88f66e
1 parent 122f64c commit 47c84a5

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

contrib/python/ydb/py2/.dist-info/METADATA

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: ydb
3-
Version: 2.15.1
3+
Version: 2.15.2
44
Summary: YDB Python SDK
55
Home-page: http://github.com/ydb-platform/ydb-python-sdk
66
Author: Yandex LLC

contrib/python/ydb/py2/ya.make

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
PY2_LIBRARY()
44

5-
VERSION(2.15.1)
5+
VERSION(2.15.2)
66

77
LICENSE(Apache-2.0)
88

contrib/python/ydb/py2/ydb/import_client.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ class ImportProgress(enum.IntEnum):
3131

3232
def _initialize_progresses():
3333
for key, value in ydb_import_pb2.ImportProgress.Progress.items():
34-
_progresses[value] = getattr(ImportProgress, key[len("PROGRESS_") :])
34+
try:
35+
_progresses[value] = getattr(ImportProgress, key[len("PROGRESS_") :])
36+
except Exception:
37+
pass
3538

3639

3740
_initialize_progresses()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "2.15.1"
1+
VERSION = "2.15.2"

0 commit comments

Comments
 (0)