Merge "Standalone server: use processes instead of threads"

This commit is contained in:
Zuul 2018-04-08 20:43:25 +00:00 committed by Gerrit Code Review
commit 99c1dcda3f
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,8 @@ manager.add_command(
"runserver",
commands.Server(host=app.config['ARA_HOST'],
port=app.config['ARA_PORT'],
threaded=True)
processes=8,
threaded=False)
)