We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8463fd commit eafeacdCopy full SHA for eafeacd
roundup/cgi/client.py
@@ -539,6 +539,15 @@ def inner_main(self):
539
except FormError, e:
540
self.error_message.append(self._('Form Error: ') + str(e))
541
self.write_html(self.renderContext())
542
+ except IOError:
543
+ # IOErrors here are due to the client disconnecting before
544
+ # receiving the reply.
545
+ # may happen during write_html and serve_file, too.
546
+ pass
547
+ except SysCallError:
548
+ # OpenSSL.SSL.SysCallError is similar to IOError above
549
550
551
except:
552
# Something has gone badly wrong. Therefore, we should
553
# make sure that the response code indicates failure.
0 commit comments