[google-appengine] in migration, data copied, but can't see the finish button.

2015-07-12 Thread saintthor
i am migrating the oldapp to the newapp. in the page https://appengine.google.com/migrating?app_id=oldapp, it tells me == Waiting to activate read-only. See below... == i choose Launch Incremental Copy, syncing stars. then i get a email telling me == This message is to inform y

[google-appengine] error 204 in Google App Engine that I can't get rid of

2015-07-12 Thread ssmcookiemonster
We have an API with Googe App Engine. This is the current configuration: 1 true default F2 7 automatic automatic automatic The process does as follows. We have two calls to datastore and a call with urlfetch (to an external API). The problem consist on that from time to time we recieved en err

[google-appengine] Re: 503 errors uploading to GCS via blobstore API

2015-07-12 Thread Michael David Pedersen
I encountered this issue too, but Joe's suggestion to add the app to the GCS bucket's permissions resolved it for me. To be specific, I added a new "User" entity with name "app...@appspot.gserviceaccount.com" and with "Owner" access to the "app_id.appspot.com" bucket, via console.developers.goo

[google-appengine] Re: [App Inventor] "tinywebrss.appspot.com" show The requested URL / was not found on this server.

2015-07-12 Thread Mah yon fong
Thank You! 在 2015年7月10日星期五 UTC+8上午4:00:19,Patrice (Cloud Platform Support)写道: > > Hi Mah Yon Fong, > > When you say the app can't access the RSS data, do you have errors in your > log? Do you see anything in your console? Do you have the particular code > that returns an error, can you provide

[google-appengine] Batch Query App engine datastore with AND expression

2015-07-12 Thread Marcus Masekowsky
Hi, I am trying to add a AND-Expression to a GAE batch query to filter Entities: Currently I am doing this, and it works perfect: 1. DBQuery.selectFromKeysOnly -> Query to select Entitie by key 2. String queryBatchString = "select from " + C1.class.getName() + " where "

[google-appengine] Re: 503 errors uploading to GCS via blobstore API

2015-07-12 Thread Jeff Schnitzer
Thanks! That seemed to get things working. I actually never noticed the little dropdown menu that let me set up bucket-specific ACLs - I thought Joe was referring to the Permissions project page (sorry Joe). However, this permission is not present on my older, working appids... something is broken

[google-appengine] Re: Datastore updates are not persisting. Help!

2015-07-12 Thread Russell Miller
This was answered on reddit On Saturday, July 11, 2015 at 6:54:55 PM UTC-7, Russell Miller wrote: > > > I am working on a GAE project in Python using NDB, and noticing that when > a datastore update

[google-appengine] Re: error 204 in Google App Engine that I can't get rid of

2015-07-12 Thread dd
Same Issue here. -- 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 google-appengine+unsubscr...@googlegroups.com. To post to this group, send email to google-

[google-appengine] Delete datastore entities by their creation date

2015-07-12 Thread A. Kong
Hi all, I have checked the ndb.Model api and there seems to no attribute to hold the creation timestamp of a data store entity. It is my use case: I want to be able to define a cron job which will sweep all entities in the datastore. If an entity is created say 24hours ago, it will be deleted