[devserver] Bump devserver threads to match apache processes.
Currently we're sitting with 150 max apache threads, and 75 on the
devserver. This leaves us in a position where apache will accept
connections to proxy onto the devserver, but the devserver is stuck
waiting one of the first 75 connections to finish, leading to timeouts.
Also, yay parallelism
BUG=No
TEST=Yes
Change-Id: I49f5ecaa619db5bce34f15faba21a76657772f6f
Reviewed-on: https://gerrit.chromium.org/gerrit/63869
Tested-by: Alex Miller <milleral@chromium.org>
Reviewed-by: Scott Zawalski <scottz@chromium.org>
Commit-Queue: Alex Miller <milleral@chromium.org>
diff --git a/devserver.py b/devserver.py
index 5b82608..ebe41c5 100755
--- a/devserver.py
+++ b/devserver.py
@@ -176,7 +176,7 @@
},
}
if options.production:
- base_config['global'].update({'server.thread_pool': 75})
+ base_config['global'].update({'server.thread_pool': 150})
return base_config