I added an issue for this here: http://code.google.com/p/googleappengine/issues/detail?id=4236&q=webapp_add_wsgi_middleware&colspec=ID%20Type%20Component%20Status%20Stars%20Summary%20Language%20Priority%20Owner%20Log
I don't know how to resolve it, it appeared at 1.4.0, but it seems to only be an annoyance. On Jan 13, 4:12 pm, Tom <[email protected]> wrote: > Hi, > > I've started receiving this error - only for some types of browsers by the > looks of things. Here's my appengine_config file: > > from gaesessions import SessionMiddleware > > # suggestion: generate your own random key using os.urandom(64) > # WARNING: Make sure you run os.urandom(64) OFFLINE and copy/paste the > output to > # this file. If you use os.urandom() to *dynamically* generate your key at > # runtime then any existing sessions will become junk every time you start, > # deploy, or update your app! > import os > COOKIE_KEY = cookiekey > > def webapp_add_wsgi_middleware(app): > from google.appengine.ext.appstats import recording > app = SessionMiddleware(app, cookie_key=COOKIE_KEY) > app = recording.appstats_wsgi_middleware(app) > return app > > Any ideas? > > Thanks > Tom -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
