We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 41682e4 + 8cc2390 commit 8769adeCopy full SHA for 8769ade
jupyterhub_idle_culler/__init__.py
@@ -97,7 +97,7 @@ async def cull_idle(
97
# GET /users may be slow if there are thousands of users and we
98
# don't do any server side filtering so default request timeouts
99
# to 60 seconds rather than tornado's 20 second default.
100
- "request_timeout": os.environ.get("JUPYTERHUB_REQUEST_TIMEOUT", 60)
+ "request_timeout": int(os.environ.get("JUPYTERHUB_REQUEST_TIMEOUT") or 60)
101
}
102
if ssl_enabled:
103
ssl_context = make_ssl_context(
0 commit comments