Re: Intermittent error on Pylons apps

2008-04-14 Thread Cliff Wells

Actually, the a different traceback that was emailed to me suggests the
error might be in docutils, not Pylons.  I'll investigate this before
bugging the list more.

Regards,
Cliff  



On Sun, 2008-04-13 at 22:16 -0700, Cliff Wells wrote:
 I have intermittent errors on a couple Pylons sites when performing POST
 operations:
 
 Traceback (most recent call last):
   File 
 /var/www/virtual/twisty-industries.com/lib/python2.5/PasteScript-1.3.6-py2.5.egg/paste/script/wsgiserver/__init__.py,
  line 624, in communicate
 req.respond()
   File 
 /var/www/virtual/twisty-industries.com/lib/python2.5/PasteScript-1.3.6-py2.5.egg/paste/script/wsgiserver/__init__.py,
  line 357, in respond
 response = self.wsgi_app(self.environ, self.start_response)
   File 
 /var/www/virtual/twisty-industries.com/lib/python2.5/PasteDeploy-1.3.1-py2.5.egg/paste/deploy/config.py,
  line 276, in __call__
 return self.app(environ, start_response)
   File 
 /var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/cascade.py,
  line 92, in __call__
 return self.apps[-1](environ, start_response)
   File 
 /var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/registry.py,
  line 340, in __call__
 app_iter = self.application(environ, start_response)
   File 
 /var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/recursive.py,
  line 80, in __call__
 return self.application(environ, start_response)
   File 
 /var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/errordocument.py,
  line 185, in __call__
 app_iter = self.application(environ, change_response)
   File 
 /var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/exceptions/errormiddleware.py,
  line 149, in __call__
 response = self.exception_handler(exc_info, environ)
   File 
 /var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/exceptions/errormiddleware.py,
  line 178, in exception_handler
 simple_html_error=simple_html_error)
   File 
 /var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/exceptions/errormiddleware.py,
  line 353, in handle_exception
 exc_data.exception_type, exc_data.exception_value))
 IOError: [Errno 5] Input/output error
 
 
 Restarting the application solves the issue for a time, but it
 inevitably happens again.  It doesn't appear to be a hardware or
 resource issue as it only happens with Pylons apps.  The apps affected
 appear to be limited to ones that have been upgraded from earlier
 versions of Pylons, but I haven't been able to locate any omissions in
 my upgrade (and they work for days or weeks without issue).
 
 I'll provide source if someone has a suggestion as to which source I
 should provide =)
 
 Regards,
 Cliff
 
 
  


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
pylons-discuss group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~--~~~~--~~--~--~---



Intermittent error on Pylons apps

2008-04-13 Thread Cliff Wells

I have intermittent errors on a couple Pylons sites when performing POST
operations:

Traceback (most recent call last):
  File 
/var/www/virtual/twisty-industries.com/lib/python2.5/PasteScript-1.3.6-py2.5.egg/paste/script/wsgiserver/__init__.py,
 line 624, in communicate
req.respond()
  File 
/var/www/virtual/twisty-industries.com/lib/python2.5/PasteScript-1.3.6-py2.5.egg/paste/script/wsgiserver/__init__.py,
 line 357, in respond
response = self.wsgi_app(self.environ, self.start_response)
  File 
/var/www/virtual/twisty-industries.com/lib/python2.5/PasteDeploy-1.3.1-py2.5.egg/paste/deploy/config.py,
 line 276, in __call__
return self.app(environ, start_response)
  File 
/var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/cascade.py,
 line 92, in __call__
return self.apps[-1](environ, start_response)
  File 
/var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/registry.py,
 line 340, in __call__
app_iter = self.application(environ, start_response)
  File 
/var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/recursive.py,
 line 80, in __call__
return self.application(environ, start_response)
  File 
/var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/errordocument.py,
 line 185, in __call__
app_iter = self.application(environ, change_response)
  File 
/var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/exceptions/errormiddleware.py,
 line 149, in __call__
response = self.exception_handler(exc_info, environ)
  File 
/var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/exceptions/errormiddleware.py,
 line 178, in exception_handler
simple_html_error=simple_html_error)
  File 
/var/www/virtual/twisty-industries.com/lib/python2.5/Paste-1.4.2-py2.5.egg/paste/exceptions/errormiddleware.py,
 line 353, in handle_exception
exc_data.exception_type, exc_data.exception_value))
IOError: [Errno 5] Input/output error


Restarting the application solves the issue for a time, but it
inevitably happens again.  It doesn't appear to be a hardware or
resource issue as it only happens with Pylons apps.  The apps affected
appear to be limited to ones that have been upgraded from earlier
versions of Pylons, but I haven't been able to locate any omissions in
my upgrade (and they work for days or weeks without issue).

I'll provide source if someone has a suggestion as to which source I
should provide =)

Regards,
Cliff


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
pylons-discuss group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~--~~~~--~~--~--~---