Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-02-08 | Added version 0.5 CHANGES. | Valentin Bartenev | 2 | -1/+213 | |
2018-02-08 | Router: fixed freed memory access race condition. | Igor Sysoev | 1 | -6/+8 | |
2018-02-08 | Tests: expectedFailure removed from test_python_keepalive.py. | Andrey Zelenkov | 1 | -1/+0 | |
Fix committed in 28a2b93de75f. | |||||
2018-02-08 | Perl: fixed IO-Object duplication bug. | Alexander Borisov | 1 | -26/+2 | |
2018-02-07 | Fixed reading of the rest of body, again. | Valentin Bartenev | 2 | -19/+12 | |
The last attempt in ee5f278e8c81 wasn't enough. | |||||
2018-02-07 | Docker: added Perl image. | Andrei Belov | 1 | -2/+5 | |
2018-02-07 | Packages: fixed building of deb packages with redefined versions. | Andrei Belov | 1 | -0/+7 | |
2018-02-07 | Packages: added Perl package. | Andrei Belov | 12 | -1/+200 | |
2018-02-07 | Perl: use ExtUtils::Embed in configure. | Andrei Belov | 2 | -13/+15 | |
2018-02-07 | Packages: fixed example configurations after fa714d76592b. | Andrei Belov | 14 | -16/+16 | |
2018-02-07 | Style fixes. | Andrey Zelenkov | 12 | -25/+23 | |
2018-02-07 | Fixed processing of application response in router. | Max Romanov | 1 | -1/+4 | |
If the first buffer contained only header and there were other buffers in chain, those buffers were not processed. In particular, this broke Perl application responses with empty body. | |||||
2018-02-06 | Perl: added more checks for 'body' variable | Alexander Borisov | 1 | -1/+6 | |
2018-02-06 | Fixed configuration checks for "max" property. | Andrey Zelenkov | 2 | -16/+16 | |
2018-02-06 | Tests: more tests for processes. | Andrey Zelenkov | 1 | -0/+93 | |
2018-02-06 | Tests: changed process counting in test_python_procman.py. | Andrey Zelenkov | 1 | -119/+71 | |
2018-02-06 | Tests: minor fixes in test_python_procman.py. | Andrey Zelenkov | 1 | -59/+35 | |
2018-02-05 | Tests: added "Connection: close" header for default requests. | Andrey Zelenkov | 1 | -1/+6 | |
2018-02-05 | Tests: simplified test for query string. | Andrey Zelenkov | 1 | -7/+2 | |
2018-02-05 | Tests: adjusted check_version()'s. | Andrey Zelenkov | 7 | -7/+16 | |
2018-02-02 | Fixed typo in assertion statement introduced in 4979fe09d9cd. | Max Romanov | 1 | -1/+1 | |
Found by Coverity (CID 260375). | |||||
2018-01-31 | Added Perl support. | Alexander Borisov | 12 | -11/+1998 | |
2018-01-30 | Generated Dockerfiles for unit 0.4. | Konstantin Pavlov | 7 | -0/+623 | |
2018-01-30 | Introduced docker images building tools. | Konstantin Pavlov | 3 | -2/+163 | |
2018-01-29 | Introducing extended app process management. | Max Romanov | 16 | -137/+982 | |
- Pre-fork 'processes.spare' application processes; - fork more processes to keep 'processes.spare' idle processes; - fork on-demand up to 'processes.max' count; - scale down idle application processes above 'processes.spare' after 'processes.idle_timeout'; - number of concurrently started application processes also limited by 'processes.spare' (or 1, if spare is 0). | |||||
2018-01-30 | Tests: added keep-alive test. | Andrey Zelenkov | 1 | -0/+64 | |
2018-01-30 | Tests: reworked TestUnitHTTP. | Andrey Zelenkov | 3 | -80/+120 | |
2018-01-30 | Tests: added methods to manage unit configuration. | Andrey Zelenkov | 6 | -253/+240 | |
2018-01-30 | Tests: small fixes. | Andrey Zelenkov | 3 | -21/+9 | |
2018-01-30 | Tests: fixed test for listener without port. | Andrey Zelenkov | 1 | -2/+2 | |
Broken after 879868522dbf. | |||||
2018-01-26 | Packages: "test" and "test-debug" targets for deb. | Andrei Belov | 1 | -2/+22 | |
2018-01-26 | Packages: "test" and "test-debug" targets for rpm. | Andrei Belov | 3 | -4/+28 | |
2018-01-25 | HTTP parser: simplified nxt_http_parse_field_value(). | Valentin Bartenev | 1 | -15/+11 | |
There's no need in loop after 4ac474b68658. Found by Coverity (CID 259713). | |||||
2018-01-24 | Tests: ignore unexpected successes in return code. | Andrey Zelenkov | 1 | -2/+5 | |
2018-01-24 | Tests: added test for QUERY_STRING variable. | Andrey Zelenkov | 1 | -0/+34 | |
2018-01-24 | Tests: added test with "Transfer-Encoding" header in 204 response. | Andrey Zelenkov | 1 | -0/+17 | |
2018-01-24 | Tests: using "expectedFailure" decorator instead of assertTry(). | Andrey Zelenkov | 6 | -273/+321 | |
2018-01-24 | Fixed formatting in nxt_sprintf() and logging. | Sergey Kandaurov | 19 | -28/+29 | |
2018-01-24 | Using size_t for the field width type of the "%*s" specifier. | Sergey Kandaurov | 13 | -28/+39 | |
2018-01-24 | HTTP parser: restricting control chars in header fields values. | Valentin Bartenev | 1 | -3/+1 | |
This also fixes an infinite loop here (found with honggfuzz). | |||||
2018-01-22 | Packages: explicit Python module versioning in Debian examples. | Andrei Belov | 4 | -4/+4 | |
2018-01-22 | Packages: added support for Amazon Linux. | Andrei Belov | 12 | -2/+302 | |
2018-01-22 | Packages: improved per-module dependency tracking. | Andrei Belov | 15 | -20/+74 | |
2018-01-19 | Python: fixed the "wsgi.errors" environment variable name. | Valentin Bartenev | 1 | -2/+2 | |
This closes issue #76 on GitHub. | |||||
2018-01-18 | Ability to validate configuration options with multiple types. | Valentin Bartenev | 1 | -45/+102 | |
2018-01-18 | Reduced duplication of validated app config options. | Max Romanov | 1 | -65/+17 | |
Common options moved to separate array. Application-specific arrays refers to common options. | |||||
2018-01-18 | Introducing pretty NXT_CONF_VLDT_END macro. | Max Romanov | 1 | -6/+9 | |
2018-01-17 | Tests: using LF line ending for test files. | Andrey Zelenkov | 6 | -869/+869 | |
2018-01-16 | HTTP: fixed chunked response on 32-bit platforms. | Igor Sysoev | 1 | -1/+1 | |
2018-01-15 | Checking for major HTTP version. | Valentin Bartenev | 5 | -13/+35 | |