summaryrefslogtreecommitdiffstats
path: root/contrib/python/docker
diff options
context:
space:
mode:
authormaxim-yurchuk <[email protected]>2024-10-09 12:29:46 +0300
committermaxim-yurchuk <[email protected]>2024-10-09 13:14:22 +0300
commit9731d8a4bb7ee2cc8554eaf133bb85498a4c7d80 (patch)
treea8fb3181d5947c0d78cf402aa56e686130179049 /contrib/python/docker
parenta44b779cd359f06c3ebbef4ec98c6b38609d9d85 (diff)
publishFullContrib: true for ydb
<HIDDEN_URL> commit_hash:c82a80ac4594723cebf2c7387dec9c60217f603e
Diffstat (limited to 'contrib/python/docker')
-rw-r--r--contrib/python/docker/patches/01-fix-detect-api-version.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/contrib/python/docker/patches/01-fix-detect-api-version.patch b/contrib/python/docker/patches/01-fix-detect-api-version.patch
new file mode 100644
index 00000000000..1e92f2cb33d
--- /dev/null
+++ b/contrib/python/docker/patches/01-fix-detect-api-version.patch
@@ -0,0 +1,22 @@
+--- contrib/python/docker/docker/api/client.py (index)
++++ contrib/python/docker/docker/api/client.py (working tree)
+@@ -8,6 +8,7 @@ import six
+
+ from .. import auth
+ from ..constants import (
++ DEFAULT_DOCKER_API_VERSION,
+ DEFAULT_MAX_POOL_SIZE,
+ DEFAULT_NUM_POOLS,
+ DEFAULT_NUM_POOLS_SSH,
+@@ -194,7 +194,10 @@ class APIClient(
+ version,
+ str
+ ) and version.lower() == 'auto'):
+- self._version = self._retrieve_server_version()
++ try:
++ self._version = self._retrieve_server_version()
++ except:
++ self._version = DEFAULT_DOCKER_API_VERSION
+ else:
+ self._version = version
+ if not isinstance(self._version, str):