Ticket #707 (defect)
Opened 1 year ago
Last modified 9 months ago
Many errors when I shutting down my web-application
Status: closed (fixed)
| Reported by: | guest | Assigned to: | rdelon |
|---|---|---|---|
| Priority: | normal | Milestone: | 3.1 |
| Component: | CherryPy code | Keywords: | |
| Cc: |
Today I get from trunk last version of CherryPy. After loading application I did shutdown with CTRL-C, then get many errors from Python
Attachments
Change History
07/13/07 05:35:53: Modified by guest
- attachment errors.txt added.
07/13/07 07:38:44: Modified by lawouach
10/26/07 02:04:44: Modified by fumanchu
- status changed from new to closed.
- resolution set to fixed.
'Interrupted system call' == EINTR. This happens when a signal is received during the accept call (cf man select(2). Most discussions I'm reading seem to say "just loop and try again", with the idea that Python is continuously polling for delayed signals and will call a signal handler later. See http://docs.python.org/api/exceptionHandling.html.
Probably fixed in [1766].


You should not be using trunk but the latest tags. Trunk has some modifications that are not stable yet.
Please try tags 3.0.1 and let us know.