Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Unified Diff: devserver.py

Issue 3811004: Increase timeouts for server responses to 6000 seconds. (Closed) Base URL: http://git.chromium.org/git/dev-util.git
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: devserver.py
diff --git a/devserver.py b/devserver.py
index c3ee31a4eaa4da4b8ac67e1bbc66392b73bb77c3..23e77016bb54e5ba9afedeb720eadee9dda2cc21 100755
--- a/devserver.py
+++ b/devserver.py
@@ -24,7 +24,8 @@ def _GetConfig(options):
'server.protocol_version': 'HTTP/1.1',
'server.socket_host': '0.0.0.0',
'server.socket_port': int(options.port),
- 'server.socket_timeout': 600,
+ 'server.socket_timeout': 6000,
+ 'response.timeout': 6000,
'tools.staticdir.root': os.getcwd(),
},
'/update':
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698