Andrew Clayton
Andrew Clayton
Changes :- -Revert changes around getline(3)
Rebased with master
Changes :- - PATH_MAX -> NXT_MAX_PATH_LEN - Better termination of the prototype processes in case of error
While we do check at config time (you could argue it's superfluous, but for the absolute path case it's a quick sanity check before things go too far) for the...
The initial cgroups support is done. There is no 1.30 version, extra features will likely be added but there is no time frame. As agreed this will be committed imminently....
@sandeep-gh Thanks for the patch. > ```diff > diff --git a/src/python/nxt_python.c b/src/python/nxt_python.c > index 188c492..8ce1194 100644 > --- a/src/python/nxt_python.c > +++ b/src/python/nxt_python.c > @@ -118,6 +118,11 @@ nxt_python_start(nxt_task_t *task, nxt_process_data_t...
Here's a patch that should work for both old & new pythons. It passes our internal testing but having it tested in real world scenarios would be good. Grab the...
@mattxtaz Thanks for testing!. Yes, the plan is to have it in the next release as we also require it for Fedora 37 support.
Hmm, I thought the idea was that `REQUEST_URI` doesn't get munged? > ``` > > curl http://127.1:8080 > $_SERVER['REQUEST_URI'] => /foo.php > ``` In which case I would have expected...
Having had a quick glance I don't immediately see where this requires changes to Unit. This seems to be more at the Python language level. You install some Python extension/module...