diff options
author | Max Romanov <max.romanov@nginx.com> | 2019-12-24 18:04:09 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2019-12-24 18:04:09 +0300 |
commit | 64f649f9903e226421869376bc72a8513581d7d0 (patch) | |
tree | 02753ac43ca918167e64338311f4cc4d78edd8c8 /src/nxt_python_wsgi.c | |
parent | 429c5a1c54fbc457c6caf6503525fd22225a4e22 (diff) | |
download | unit-64f649f9903e226421869376bc72a8513581d7d0.tar.gz unit-64f649f9903e226421869376bc72a8513581d7d0.tar.bz2 |
Adding "limits/shm" configuration validation and parsing.
Diffstat (limited to 'src/nxt_python_wsgi.c')
-rw-r--r-- | src/nxt_python_wsgi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nxt_python_wsgi.c b/src/nxt_python_wsgi.c index 3b13bea1..ea8b6903 100644 --- a/src/nxt_python_wsgi.c +++ b/src/nxt_python_wsgi.c @@ -404,6 +404,7 @@ nxt_python_init(nxt_task_t *task, nxt_common_app_conf_t *conf) nxt_unit_default_init(task, &python_init); python_init.callbacks.request_handler = nxt_python_request_handler; + python_init.shm_limit = conf->shm_limit; unit_ctx = nxt_unit_init(&python_init); if (nxt_slow_path(unit_ctx == NULL)) { |