Skip to content

Commit 943b0e7

Browse files
psontagPhilipp Sontag
authored and
Philipp Sontag
committed
Support setting the _request_timeout parameter for the dynamic client
1 parent 51c4816 commit 943b0e7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

kubernetes/base/dynamic/client.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,8 @@ def request(self, method, path, body=None, **params):
279279
files=local_var_files,
280280
auth_settings=auth_settings,
281281
_preload_content=False,
282-
_return_http_data_only=params.get('_return_http_data_only', True)
282+
_return_http_data_only=params.get('_return_http_data_only', True),
283+
_request_timeout=params.get('_request_timeout')
283284
)
284285
if params.get('async_req'):
285286
return api_response.get()

0 commit comments

Comments
 (0)