<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/waitress.git/tests, branch bugfix/close-buffer</title>
<subtitle>github.com: Pylons/waitress.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/'/>
<entry>
<title>black: Fix whitespace</title>
<updated>2022-01-17T04:59:45+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2022-01-17T04:57:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=b59facd51eef152646ddc3f6a25acea924c14f3c'/>
<id>b59facd51eef152646ddc3f6a25acea924c14f3c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add REMOTE_URI to the WSGI environ.</title>
<updated>2021-05-11T14:42:05+00:00</updated>
<author>
<name>Shane Hathaway</name>
<email>shane@willowrise.com</email>
</author>
<published>2021-05-11T14:42:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=22120803fed3bffc61c85c1b1acef8c2d68e620e'/>
<id>22120803fed3bffc61c85c1b1acef8c2d68e620e</id>
<content type='text'>
CHANGES.txt entry included.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CHANGES.txt entry included.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove attempt to resolve IP address to server_name</title>
<updated>2020-11-27T05:42:44+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2020-11-27T05:42:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=2f2972e8349d19cc36472e54fc9969b431ef1413'/>
<id>2f2972e8349d19cc36472e54fc9969b431ef1413</id>
<content type='text'>
Instead we just rely on the server_name passed in to the adjustment.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead we just rely on the server_name passed in to the adjustment.
</pre>
</div>
</content>
</entry>
<entry>
<title>If we are not on Windows use fork for multiprocessing</title>
<updated>2020-11-26T19:30:46+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2020-11-26T19:30:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=ab5bbaea511994a543de84bf4d2197551a45142b'/>
<id>ab5bbaea511994a543de84bf4d2197551a45142b</id>
<content type='text'>
This speeds up the test suite significantly by reducing the overhead of
spawning a new process.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This speeds up the test suite significantly by reducing the overhead of
spawning a new process.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #310 from perfact/notify-client-close</title>
<updated>2020-10-31T07:03:50+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>xistence@0x58.com</email>
</author>
<published>2020-10-31T07:03:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=31d7498c84cf0041f37beb503fd0ddf78d9d41e2'/>
<id>31d7498c84cf0041f37beb503fd0ddf78d9d41e2</id>
<content type='text'>
Notify client close</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Notify client close</pre>
</div>
</content>
</entry>
<entry>
<title>Allow tasks to notice if client disconnected</title>
<updated>2020-10-25T08:36:34+00:00</updated>
<author>
<name>Viktor Dick</name>
<email>vd@perfact.de</email>
</author>
<published>2020-08-11T19:10:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=a514a47e55f0a663477831d083f608a7d2db035b'/>
<id>a514a47e55f0a663477831d083f608a7d2db035b</id>
<content type='text'>
This inserts a callable `waitress.client_disconnected` into the
environment that allows the task to check if the client disconnected
while waiting for the response at strategic points in the execution,
allowing to cancel the operation.

It requires setting the new adjustment `channel_request_lookahead` to a
value larger than 0, which continues to read requests from a channel
even if a request is already being processed on that channel, up to the
given count, since a client disconnect is detected by reading from a
readable socket and receiving an empty result.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This inserts a callable `waitress.client_disconnected` into the
environment that allows the task to check if the client disconnected
while waiting for the response at strategic points in the execution,
allowing to cancel the operation.

It requires setting the new adjustment `channel_request_lookahead` to a
value larger than 0, which continues to read requests from a channel
even if a request is already being processed on that channel, up to the
given count, since a client disconnect is detected by reading from a
readable socket and receiving an empty result.
</pre>
</div>
</content>
</entry>
<entry>
<title>warn when the server stops listening for connections because its in overflow</title>
<updated>2020-10-22T07:52:02+00:00</updated>
<author>
<name>Michael Merickel</name>
<email>michael@merickel.org</email>
</author>
<published>2020-10-22T07:52:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=866ceac9d51e2a9f3434cce55aa478fd455e07f1'/>
<id>866ceac9d51e2a9f3434cce55aa478fd455e07f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Blacken the added test</title>
<updated>2020-10-22T04:35:14+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2020-10-22T04:35:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=5570c7c9931d32f7558e08143d32125a745ec56b'/>
<id>5570c7c9931d32f7558e08143d32125a745ec56b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test to validate Request Headers too large fails with 431 status</title>
<updated>2020-10-22T04:28:00+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2020-10-22T04:28:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=c85f7e3ce2bfa6024b0ac8b3cefcb2b206f5e047'/>
<id>c85f7e3ce2bfa6024b0ac8b3cefcb2b206f5e047</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Black formatting update</title>
<updated>2020-09-07T18:59:22+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2020-09-07T18:59:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=fcfe88c49034e4f5e6316a581ac57aaaf9613346'/>
<id>fcfe88c49034e4f5e6316a581ac57aaaf9613346</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
