Skip to content

Commit

Permalink
Support setting the _request_timeout parameter for the dynamic client
Browse files Browse the repository at this point in the history
  • Loading branch information
psontag authored and Philipp Sontag committed Apr 20, 2022
1 parent 51c4816 commit 943b0e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kubernetes/base/dynamic/client.py
Expand Up @@ -279,7 +279,8 @@ def request(self, method, path, body=None, **params):
files=local_var_files,
auth_settings=auth_settings,
_preload_content=False,
_return_http_data_only=params.get('_return_http_data_only', True)
_return_http_data_only=params.get('_return_http_data_only', True),
_request_timeout=params.get('_request_timeout')
)
if params.get('async_req'):
return api_response.get()
Expand Down

0 comments on commit 943b0e7

Please sign in to comment.