Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit e444e2b

Browse files
authored
Merge pull request #96 from IdentityPython/timeout
feat: default httpc_params configuration - added 4 second timeout
2 parents 5ce5fcf + 6f20ee2 commit e444e2b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/oidcop/configure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
}
6666
},
6767
},
68-
"httpc_params": {"verify": False},
68+
"httpc_params": {"verify": False, "timeout": 4},
6969
"issuer": "https://{domain}:{port}",
7070
"template_dir": "templates",
7171
"token_handler_args": {
@@ -503,7 +503,7 @@ def __init__(
503503
},
504504
},
505505
},
506-
"httpc_params": {"verify": False},
506+
"httpc_params": {"verify": False, "timeout": 4},
507507
"issuer": "https://{domain}:{port}",
508508
"keys": {
509509
"private_path": "private/jwks.json",

0 commit comments

Comments
 (0)