From 7604ce34416259c86f3cc545d033984dacf3fd1a Mon Sep 17 00:00:00 2001 From: Unbit Date: Sat, 5 Oct 2013 12:34:57 +0200 Subject: [PATCH] --wsgi-accept-buffers --- plugins/python/python_plugin.c | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/python/python_plugin.c b/plugins/python/python_plugin.c index 90cd2301..0b5921b7 100644 --- a/plugins/python/python_plugin.c +++ b/plugins/python/python_plugin.c @@ -158,6 +158,7 @@ struct uwsgi_option uwsgi_python_options[] = { {"wsgi-strict", no_argument, 0, "try to be fully PEP compliant disabling optimizations", uwsgi_opt_true, &up.wsgi_strict, 0}, {"wsgi-accept-buffer", no_argument, 0, "accept CPython buffer-compliant objects as WSGI response in addition to string/bytes", uwsgi_opt_true, &up.wsgi_accept_buffer, 0}, + {"wsgi-accept-buffers", no_argument, 0, "accept CPython buffer-compliant objects as WSGI response in addition to string/bytes", uwsgi_opt_true, &up.wsgi_accept_buffer, 0}, {"python-version", no_argument, 0, "report python version", uwsgi_opt_pyver, NULL, UWSGI_OPT_IMMEDIATE},