Provides a patch to stop using urllib3 deprecated APIs until the upgrade to latest OpenAPI Generator (>6.4.0)

This commit is contained in:
Arcadiy Ivanov 2024-01-02 14:57:24 -05:00
parent ecdbed0fe2
commit 647d5d182b
No known key found for this signature in database
GPG Key ID: 3EFDACAE0954CFA4
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,13 @@
diff --git a/kubernetes/client/exceptions.py b/kubernetes/client/exceptions.py
index c7c152b5..1e23d80a 100644
--- a/kubernetes/client/exceptions.py
+++ b/kubernetes/client/exceptions.py
@@ -88,7 +88,7 @@ class ApiException(OpenApiException):
self.status = http_resp.status
self.reason = http_resp.reason
self.body = http_resp.data
- self.headers = http_resp.getheaders()
+ self.headers = http_resp.headers
else:
self.status = status
self.reason = reason

View File

@ -78,6 +78,8 @@ git apply "${SCRIPT_ROOT}/rest_client_patch.diff"
# once we upgrade to a version of swagger-codegen that includes it (version>= 6.6.0).
# See https://github.com/OpenAPITools/openapi-generator/pull/15283
git apply "${SCRIPT_ROOT}/rest_sni_patch.diff"
# OpenAPI client generator prior to 6.4.0 uses deprecated urllib3 APIs.
git apply "${SCRIPT_ROOT}/rest_urllib_headers.diff"
echo ">>> generating docs..."
pushd "${DOC_ROOT}" > /dev/null