Do not run devserver in production mode.

Production mode starts the devserver with 75 threads as oppossed to
10. This causes a high amount of stress on startup on builders that
may be running this in parallel with many other processes.

BUG=chromium:244055
TEST=Ran it.

Change-Id: I235c05cdae1baf0cba6452d611e64a14ec0a5510
Reviewed-on: https://gerrit.chromium.org/gerrit/58275
Tested-by: Chris Sosa <sosa@chromium.org>
Reviewed-by: David James <davidjames@chromium.org>
Commit-Queue: Chris Sosa <sosa@chromium.org>
diff --git a/lib/dev_server_wrapper.py b/lib/dev_server_wrapper.py
index 4ccf528..d118d1e 100644
--- a/lib/dev_server_wrapper.py
+++ b/lib/dev_server_wrapper.py
@@ -61,7 +61,7 @@
   def run(self):
     # Kill previous running instance of devserver if it exists.
     self.Stop()
-    cmd = ['start_devserver', '--archive_dir=./static', '--production']
+    cmd = ['start_devserver', '--archive_dir=./static']
     cros_build_lib.SudoRunCommand(cmd, enter_chroot=True, print_cmd=False,
                                   log_stdout_to_file=self._log_filename,
                                   combine_stdout_stderr=True,