Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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: top of the error page And of the bottom: bottom of the error page

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!

share|improve this question

1 Answer

Error is quite confusing but it does say "illegal argument". The --backends argument that you are passing is not one of available command line arguments for pyton dev server.

share|improve this answer
Thanks for the answer, but running dev_appserver --help says that one possible argument is: "--backends Run the dev_appserver with backends support (multiprocess mode)." I used that argument because I saw it in developers.google.com/appengine/docs/python/backends/overview Where it says "When running dev_appserver.py, pass --backends to enable backends support." So I guess it must be that the dev_appserver doc is a bit outdated. – payala Sep 16 '12 at 10:38
I see --backends isn't in the help anymore as of the latest version (1.8.X), but the docs site still lists it. Is this feature nonexistent? – Ralph B May 9 at 5:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.