We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d8d9de commit 3a00d2dCopy full SHA for 3a00d2d
nginx/ngx_python_module.c
@@ -3,7 +3,6 @@
3
static ngx_int_t ngx_python_init_process(ngx_cycle_t *cycle);
4
static void ngx_python_exit_process(ngx_cycle_t *cycle);
5
static ngx_int_t ngx_python_postconfiguration(ngx_conf_t *cf);
6
-static ngx_int_t ngx_python_post_read(ngx_http_request_t *r);
7
8
static wchar_t *python_exec = NULL;
9
@@ -88,12 +87,7 @@ ngx_python_postconfiguration(ngx_conf_t *cf) {
88
87
if (h == NULL) {
89
return NGX_ERROR;
90
}
91
- *h = ngx_python_post_read;
+ *h = nginxpy_post_read;
92
93
return NGX_OK;
94
95
-
96
-static ngx_int_t
97
-ngx_python_post_read(ngx_http_request_t *r) {
98
- return nginxpy_post_read(r);
99
-}
0 commit comments