Fix the number of threads for waitress.

This commit is contained in:
Jean-Christophe Amiel 2025-10-18 19:10:36 +02:00 committed by hurl-bot
parent 443fd9d022
commit 9fbf64be51
No known key found for this signature in database
GPG Key ID: 1283A2B4A0DCAF8D
1 changed files with 1 additions and 1 deletions

View File

@ -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__":