From 56397bb14ba06cee84a84ed617bbe20bdf4eb24b Mon Sep 17 00:00:00 2001 From: Kentaro Tokutomi Date: Mon, 6 Sep 2021 21:52:38 +0900 Subject: [PATCH] Fix typo in WSGI environment variable --- python_tests/wsgi_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_tests/wsgi_client.py b/python_tests/wsgi_client.py index 68a4c0e1..eb935d55 100644 --- a/python_tests/wsgi_client.py +++ b/python_tests/wsgi_client.py @@ -39,7 +39,7 @@ def create_wsgi_env( "wsgi.version": (1, 0), "wsgi.errors": io.StringIO(""), "wsgi.multithread": True, - "wsgi.multitprocess": True, + "wsgi.multiprocess": True, "wsgi.run_once": False, } for k, v in headers.items():