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 neologix
Recipients exarkun, mdcowles, neologix
Date 2010-04-22.17:44:22
SpamBayes Score 2.6811863e-08
Marked as misclassified No
Message-id <1271958264.01.0.497422235322.issue8493@psf.upfronthosting.co.za>
In-reply-to
Content
The problem is that if you run out of "network buffers" (I guess it's equivalent to Unix socket buffers), what do you do ?
If the network or the receiving host is congested, spinning around the send call trying to resend the data isn't going to improve things, you should probably wait a little before retrying. Furthermore, if you get this type of error, it's probably because you're using non-blocking sockets. And if it's the case, you should be prepared to this type of transient error, and use socket.send instead (so that you can sleep, retry, etc if necesssary).
History
Date User Action Args
2010-04-22 17:44:24neologixsetrecipients: + neologix, mdcowles, exarkun
2010-04-22 17:44:24neologixsetmessageid: <1271958264.01.0.497422235322.issue8493@psf.upfronthosting.co.za>
2010-04-22 17:44:22neologixlinkissue8493 messages
2010-04-22 17:44:22neologixcreate