I have a long running task that would benefit from running in a backend. However, when I call dev_appserver.py with the --backends option the server no longer works correctly.
I am getting an error page that I never saw before on app engine. And the error seems to be a
The stack trace is really long, but I took a screenshot of the top of the error page:
And of the bottom:

It seems to be related with the logging module, because the first time that I can see something related with an error in an except clause is in the logging module:
C:\Python27\lib\logging__init__.py in emit(self=<logging.StreamHandler object>, record=<logging.LogRecord object>)
872 raise
873 except:
=> 874 self.handleError(record)
875
876 class FileHandler(StreamHandler):
self = <logging.StreamHandler object>, self.handleError = <bound method StreamHandler.handleError of <logging.StreamHandler object>>, record = <logging.LogRecord object>
OS is Win7 x64, I have searched for something similar to this and found nothing. Any clues are more than welcome.
Thank you all!