Hey Dewey, That's an interesting pattern I can't say I've seen before. Now that you provide more details I see what you meant in your original post. I've attempted to reproduce this issue but haven't been able to observe it occurring. If you want to file a Feature Request for a better error message in the Public Issue Tracker <http://issuetracker.google.com>, be sure to include a reproducing example app (you can produce this by stripping everything from your app that's proprietary / not necessary for reproducing the issue). We monitor the Public Issue Tracker regularly and would be happy to take your report. Cheers,
Nick Cloud Platform Community Support On Thursday, March 30, 2017 at 12:29:13 AM UTC-4, Dewey Gaedcke wrote: > > Hi Nick...thanks for your reply. > > I did also post this to SO but have received no responses....seems no one > else has seen this > And since my code did not change, but I had recently upgraded the SDK, I > was unclear what was causing the problem. But here is the summary: > > the backend for our mobile app (under app.yaml) calls these two lines: > from google.appengine.api import taskqueue > taskqueue.add(target='task', queue_name=GAEQ_FOR_PUSH_NOTIFY, url=url, > params=params ) > > That taskqueue.add() caused the error & resulting stack-trace shown above. > > I had been starting my local dev-server via CLI like this: > > dev_appserver.py --clear_datastore 0 app.yaml service_admin.yaml > --logs_path=/tmp/gaelogs --log_level=debug > > > I didn't realize that I had grabbed an old example from our dev-onboarding > document...and I should have been starting the local server like this: > > > dev_appserver.py --clear_datastore 0 app.yaml service_admin.yaml > service_task.yaml --logs_path=/tmp/gaelogs --log_level=debug > > > once I also started the task microservice, the crash disappeared....or at > least I've not seen it again > > > service_task.yaml is the one that includes: > > - url: /_ah/queue/deferred > script: google.appengine.ext.deferred.handler > login: admin > > in the handlers section > > > all I can guess is that this caused the local environment to start up the > task queue....but I really am only guessing... > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/ef68ecd0-88d9-488e-ad7f-11c36feed96b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
