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

Unified Diff: sky/tools/sky_server

Issue 700213005: Teach sky_server how to use more threads and not drop requests (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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: sky/tools/sky_server
diff --git a/sky/tools/sky_server b/sky/tools/sky_server
index 7b8f092b121ec5a4755617c4f683b6afa2447970..26375a61eb93505c47ef1b1c566dc008651a7042 100755
--- a/sky/tools/sky_server
+++ b/sky/tools/sky_server
@@ -43,6 +43,10 @@ def main():
config = {
'global': {
+ # Cherrypy appears to just drop requests if it doesn't have
+ # a thread to service them, so set our thread_pool high enough
+ # so that a z620 can run all the tests w/o timeouts.
+ 'server.thread_pool': 30,
'server.socket_port': args.port,
'tools.staticdir.content_types' : {
'sky': 'text/sky',
« 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