Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #88204 > unrolled thread
| Started by | dieter <dieter@handshake.de> |
|---|---|
| First post | 2015-03-28 07:43 +0100 |
| Last post | 2015-03-28 07:43 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: pycurl.error: (55, 'select/poll returned error') dieter <dieter@handshake.de> - 2015-03-28 07:43 +0100
| From | dieter <dieter@handshake.de> |
|---|---|
| Date | 2015-03-28 07:43 +0100 |
| Subject | Re: pycurl.error: (55, 'select/poll returned error') |
| Message-ID | <mailman.286.1427525010.10327.python-list@python.org> |
Nagy László Zsolt <gandalf@shopzeus.com> writes: > When calling curl.perform() on a curl instance I get this: > > pycurl.error: (55, 'select/poll returned error') > .... > This error happens only if the file to be POST-ed is big enough. Last > week files were under 1GB and everything went fine. Files above about > 1GB cannot be sent over with curl. Web services sometimes have limits about the allowed size of uploaded files. I know about one web server application framework (Zope/ZServer) that simply shuts down its communication channel when it receives a too large file - such a behaviour can confuse the client. Maybe, in your case, the server side, too, does something unexpected when it receives large files? "select/poll" by itself has nothing to do with the size of files. It is used to get informed when one out a set of communication channels is ready (again) for interaction. In principle, it should not fail -- unless something strange happens to the communication channels.
Back to top | Article view | comp.lang.python
csiph-web