Skip to content

Commit 1b620f4

Browse files
committed
Make the timeout float
1 parent b398ef7 commit 1b620f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_server_proxy/handlers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ def proxy_request_headers(self):
316316
def proxy_request_options(self):
317317
'''A dictionary of options to be used when constructing
318318
a tornado.httpclient.HTTPRequest instance for the proxy request.'''
319-
return dict(follow_redirects=False, request_timeout=75)
319+
return dict(follow_redirects=False, request_timeout=75.0)
320320

321321
def check_xsrf_cookie(self):
322322
'''

0 commit comments

Comments
 (0)