<feed xmlns='http://www.w3.org/2005/Atom'>
<title>unit.git/src, branch 1.7.1</title>
<subtitle>Universal Web Application Server</subtitle>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/'/>
<entry>
<title>Rejecting requests with invalid "Content-Length".</title>
<updated>2019-02-07T14:40:27+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2019-02-07T14:40:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=83dd67d2164bc3df61e8ede97467c0bbc31e395b'/>
<id>83dd67d2164bc3df61e8ede97467c0bbc31e395b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Testing correct value.</title>
<updated>2019-01-18T13:18:36+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2019-01-18T13:18:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=627b116c4db8d7b0b9cb4e15486bd2847d03ee8a'/>
<id>627b116c4db8d7b0b9cb4e15486bd2847d03ee8a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Version bump.</title>
<updated>2019-02-07T14:42:31+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2019-02-07T14:42:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=e038f1e9cc61e735645a3ac8605b055614327040'/>
<id>e038f1e9cc61e735645a3ac8605b055614327040</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Python: fixed error reporting on initialization of applications.</title>
<updated>2018-12-20T12:47:10+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2018-12-20T12:47:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=27394118b32ab395be50de15ecf514d5529090c5'/>
<id>27394118b32ab395be50de15ecf514d5529090c5</id>
<content type='text'>
PyErr_Print() writes traceback to "sys.stderr", which is a file object that
can buffer the output.  If the process exits immediately, the buffer can be
destroyed before flushing to the log.  As a result, the user doesn't see
the traceback.

Now Py_Finalize() is also called in case of any errors during initialization.
It finalizes the interpreter and flushes all data.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PyErr_Print() writes traceback to "sys.stderr", which is a file object that
can buffer the output.  If the process exits immediately, the buffer can be
destroyed before flushing to the log.  As a result, the user doesn't see
the traceback.

Now Py_Finalize() is also called in case of any errors during initialization.
It finalizes the interpreter and flushes all data.
</pre>
</div>
</content>
</entry>
<entry>
<title>Python: cleanup of nxt_python_init().</title>
<updated>2018-12-20T12:47:10+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2018-12-20T12:47:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=1ce7e860b2913bc5c89258dca6c8fa9cf86ade35'/>
<id>1ce7e860b2913bc5c89258dca6c8fa9cf86ade35</id>
<content type='text'>
 - Removed surplus NULL assignments;
 - Added missing nxt_slow_path();
 - Style cleanup.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 - Removed surplus NULL assignments;
 - Added missing nxt_slow_path();
 - Style cleanup.
</pre>
</div>
</content>
</entry>
<entry>
<title>Python: fixed a typo in path error message.</title>
<updated>2018-12-20T11:17:58+00:00</updated>
<author>
<name>Artem Konev</name>
<email>artem.konev@nginx.com</email>
</author>
<published>2018-12-20T11:17:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=9c03079e3a4a7aead2f761a3a425bee065cc89d1'/>
<id>9c03079e3a4a7aead2f761a3a425bee065cc89d1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Python: replaced PyErr_PrintEx(1) with PyErr_Print().</title>
<updated>2018-12-19T17:06:53+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2018-12-19T17:06:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=cebec46353b3a185f96520e012cbf52e40238cae'/>
<id>cebec46353b3a185f96520e012cbf52e40238cae</id>
<content type='text'>
These function calls are equivalent.
No functional changes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These function calls are equivalent.
No functional changes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Node.js: removed value checking for headers.</title>
<updated>2018-12-19T12:57:07+00:00</updated>
<author>
<name>Alexander Borisov</name>
<email>alexander.borisov@nginx.com</email>
</author>
<published>2018-12-19T12:57:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=98e8f366dabbe1b8e923678d9edd17ee61b54e0f'/>
<id>98e8f366dabbe1b8e923678d9edd17ee61b54e0f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Node.js: removed unused _implicitHeader() function.</title>
<updated>2018-12-19T12:57:04+00:00</updated>
<author>
<name>Alexander Borisov</name>
<email>alexander.borisov@nginx.com</email>
</author>
<published>2018-12-19T12:57:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=d9dad07934c17319b6aecd5b4958cdef3a196ad0'/>
<id>d9dad07934c17319b6aecd5b4958cdef3a196ad0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Node.js: added check for libunit version at compile time.</title>
<updated>2018-12-19T12:56:57+00:00</updated>
<author>
<name>Alexander Borisov</name>
<email>alexander.borisov@nginx.com</email>
</author>
<published>2018-12-19T12:56:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=d6f38a3268dd4df717bdb9054f3f9ee47fa1f429'/>
<id>d6f38a3268dd4df717bdb9054f3f9ee47fa1f429</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
