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/a5d6b3df-3ca1-4c18-9d06-ad4b6b8a021c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to