<feed xmlns='http://www.w3.org/2005/Atom'>
<title>unit.git, branch 1.7</title>
<subtitle>Universal Web Application Server</subtitle>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/'/>
<entry>
<title>Generated Dockerfiles for Unit 1.7.</title>
<updated>2018-12-20T16:17:08+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2018-12-20T16:17:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=c51e1aa47dcb13b7118e0be00619736ccca839df'/>
<id>c51e1aa47dcb13b7118e0be00619736ccca839df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added version 1.7 CHANGES.</title>
<updated>2018-12-20T16:17:08+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2018-12-20T16:17:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=45655f26527c43a4606b0c8b5fbba1c426e10273'/>
<id>45655f26527c43a4606b0c8b5fbba1c426e10273</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed style in CHANGES.</title>
<updated>2018-12-20T16:17:08+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2018-12-20T16:17:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=61a87bc285e08f17dfc48c2bcbaf300565d62f77'/>
<id>61a87bc285e08f17dfc48c2bcbaf300565d62f77</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>
