Skip to content

Commit 7bdd546

Browse files
cnvrtrIlja Stakanovs
and
Ilja Stakanovs
authored
fix: passing timeout values to ConnectionManager (#578)
* fix: passing timeout values to ConnectionManager * fix linting --------- Co-authored-by: Ilja Stakanovs <ilja.stakanovs@decta.com>
1 parent 0184e03 commit 7bdd546

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ pre-commit install --install-hooks -t pre-commit -t pre-push -t commit-msg
8686

8787
1. Fork this repository, develop and test your changes
8888
2. Make sure that your changes do not decrease the test coverage
89-
3. Make sure you're commits follow the conventional commits
89+
3. Make sure your commits follow the conventional commits
9090
4. Submit a pull request
9191

9292
## How to release

src/keycloak/openid_connection.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,10 @@ def __init__(
119119
self.headers = {**self.headers, "Content-Type": "application/json"}
120120

121121
super().__init__(
122-
base_url=self.server_url, headers=self.headers, timeout=60, verify=self.verify
122+
base_url=self.server_url,
123+
headers=self.headers,
124+
timeout=self.timeout,
125+
verify=self.verify,
123126
)
124127

125128
@property

0 commit comments

Comments
 (0)