This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author giampaolo.rodola
Recipients asvetlov, giampaolo.rodola, neologix, yselivanov
Date 2019-02-15.13:44:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1550238279.45.0.385319342978.issue36003@roundup.psfhosted.org>
In-reply-to
Content
socketserver.TCPServer provides the following defaults:

allow_reuse_address = False
request_queue_size = 5

Proposal is to:
* have "allow_reuse_address = True" on POSIX in order to immediately reuse previous sockets which were bound on the same address and remained in TIME_WAIT state
* have "request_queue_size = None" so that it's up to socket.listen() to choose a default reasonable value (usually 128)
History
Date User Action Args
2019-02-15 13:44:39giampaolo.rodolasetrecipients: + giampaolo.rodola, asvetlov, neologix, yselivanov
2019-02-15 13:44:39giampaolo.rodolasetmessageid: <1550238279.45.0.385319342978.issue36003@roundup.psfhosted.org>
2019-02-15 13:44:39giampaolo.rodolalinkissue36003 messages
2019-02-15 13:44:39giampaolo.rodolacreate