Skip to content

Commit edbc263

Browse files
committed
add a workaround fix
1 parent 9a47aad commit edbc263

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

appium/webdriver/appium_connection.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,7 @@ def get_remote_connection_headers(cls, parsed_url: 'ParseResult', keep_alive: bo
6262
RemoteConnection.extra_headers = {}
6363

6464
return headers
65+
66+
# TODO: remove after https://github.com/SeleniumHQ/selenium/pull/14692 merge
67+
def _request(self, method, url, body=None):
68+
return super()._request(method, url, body=body, timeout=self._client_config.timeout)

0 commit comments

Comments
 (0)