summaryrefslogtreecommitdiff
path: root/src/waitress
Commit message (Collapse)AuthorAgeFilesLines
* blackifyconnection-overflow-warningMichael Merickel2020-10-221-4/+4
|
* only change state while acceptingMichael Merickel2020-10-221-19/+21
|
* warn when the server stops listening for connections because its in overflowMichael Merickel2020-10-221-1/+21
|
* Updates MultiSocketServer to use log_info instead of printSergi Delgado Segura2020-10-161-1/+1
|
* Use log_info instead of print in print_listenƁukasz Stolcman2020-09-221-1/+1
|
* Black formatting updateBert JW Regeer2020-09-075-25/+21
|
* Stop marking socket as readable when flushing dataBert JW Regeer2020-08-161-3/+42
| | | | | | | | | We no longer mark the socket as readable if we are attempting to flush whatever remaining data we have and are trying to shut down the channel. Whatever data is ready to be read, it's no longer our concern. We don't want to spend time reading data we don't care about.
* Remove useless try/finally wrapperBert JW Regeer2020-08-161-10/+7
| | | | | This looks to be an artifact that was left behind from the original codebase Waitress was forked from and no longer servces a purpose.
* Reduce compat.py to minimum sizeBert JW Regeer2020-08-165-60/+45
|
* Add isort to the projectBert JW Regeer2020-08-1510-50/+32
|
* Blacken the codebaseBert JW Regeer2020-08-151-1/+1
|
* Cleanup waitress.compatBert JW Regeer2020-08-151-138/+25
|
* No cover wide exceptionBert JW Regeer2020-08-151-1/+1
|
* No longer rely on compatBert JW Regeer2020-08-151-3/+3
|
* Goodbye PY2Bert JW Regeer2020-08-151-2/+1
|
* Re-raise the original exceptionBert JW Regeer2020-08-151-2/+2
|
* Cleanup string formattingBert JW Regeer2020-08-152-8/+7
|
* Bare super()Bert JW Regeer2020-08-152-2/+2
|
* socket.error/IOError -> OSErrorBert JW Regeer2020-08-155-20/+20
|
* Remove object from class definitionBert JW Regeer2020-08-159-14/+14
|
* Update thread name to contain thread numberBert JW Regeer2020-05-271-3/+5
| | | | This way loggers that use the thread name display useful information
* stabilize buffer behavior with multiple requests on the same connectionMichael Merickel2020-05-201-3/+13
| | | | | | | | previous to this change, a buffer may be reused across requests, and would cause data to be written to disk even if each individual request was not returning much data fixes #265
* Blacken filesBert JW Regeer2020-04-161-0/+1
|
* Move source code to src folderBert JW Regeer2020-04-1616-0/+4956