For Go on App Engine questions, please use the Google group that is specifically for that topic: cc: https://groups.google.com/forum/#!forum/google-appengine-go
We do not have an ETA for these features yet. Instead of runtime.RunInBackground, you can use internal.BackgroundContext <https://github.com/golang/appengine/blob/master/internal/api.go#L252>. There are other threads on the google-appengine-go mailing list about this if you want to see examples. As for the "API error", there was a recent change <https://github.com/golang/appengine/commit/bcfa7f27d2c3d83c7941564274e7797829a30f9e> that hopefully solves this problem. Please try updating with "go get -u google.golang.org/appengine/..." and see if that fixes the problem. -- Glenn On Tuesday, July 14, 2015 at 8:13:05 AM UTC-7, pedro mg wrote: > > Hi, > > any idea on when appengine/runtime will be ported ? Any timeframe ? > "appengine/aetest, appengine/cloudsql and appengine/runtime have not been > ported yet." > > > https://github.com/golang/appengine#3-update-code-using-deprecated-removed-or-modified-apis > > runtime.RunInBackground(...) used appengine.Context as param, but on our > updated app we now use context.Context. > > Also, we are getting "API error 9 (memcache: Memcache is temporarily > unavailable)" quite frequently. > > Thanks in advance, > -- > pedro mg > -- 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 http://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/35f55106-d138-4e0c-af8f-e0dbd4350176%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
