Fix the number of threads for waitress.
This commit is contained in:
parent
443fd9d022
commit
9fbf64be51
|
|
@ -15,7 +15,7 @@ def main():
|
|||
args = parser.parse_args()
|
||||
|
||||
load_tests()
|
||||
serve(app, host=args.host, port=args.port)
|
||||
serve(app, host=args.host, port=args.port, threads=4)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
|
|||
Loading…
Reference in New Issue