Re: [google-appengine] Re: What's up with Blobstore?

2017-05-18 Thread Joshua Fox
Thank you Jason, Nicholas, and George. I hope that Google comes through with a transparent migration tool before deprecating Blobstore. On Thu, May 18, 2017 at 12:15 AM, Jason Collins wrote: > This (unsupported, open source) tool might help too: https://github.com/

Re: [google-appengine] Re: What's up with Blobstore?

2017-05-18 Thread Joshua Fox
Thank you, that is a useful illustration of how to access Blobstore from code that is not a browser. On Thu, May 18, 2017 at 12:15 AM, Jason Collins wrote: > This (unsupported, open source) tool might help too: https://github.com/ >

[google-appengine] Re: GAE Python - Error during the import _winreg

2017-05-18 Thread 'George (Cloud Platform Support)' via Google App Engine
The provided extra info seems quite helpful. It will be taken into consideration by Developers. -- 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] Weird new behavior when using `login: admin`

2017-05-18 Thread Geoffrey Arnold
Hello, We're still trying to nail it down, but we're seeing weird new behavior when using `login: admin` in app.yaml to secure a route when a user is logged into multiple Google Accounts in their browser. Note that we *are not* using the IAP. Previously, when a user was logged into multiple

[google-appengine] IAP has a short timeout

2017-05-18 Thread Geoffrey Arnold
Hello, We've enabled IAP on one of our apps. I haven't timed it precisely, but it appears that the login credentials are expiring rather quickly (one the order of an hour or so), requiring us to reauthenticate with IAP. This makes it difficult to use IAP with AJAX-y apps because we're constantly

[google-appengine] Request: Update account chooser when using Users API

2017-05-18 Thread Geoffrey Arnold
Hello, IAP uses the new Google Account chooser, however apps using the Users API still use an old style account chooser. Are you planning on updating the Users API account chooser in the near future? Best, Geoff. -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Instance spinning for a user facing request - Standard Java Appengine

2017-05-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions and not for technical support. - I suggest you first investigate your requests using Stackdriver Trace to find out where the latency is occurring (as it is often code related). - If the latency is seen

[google-appengine] Re: Request: Update account chooser when using Users API

2017-05-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
It is recommended to submit a feature request by filing a Public Issue Tracker . This will then be properly triaged to the engineering team to investigate. -- You received this message because you are subscribed to the Google Groups

[google-appengine] Is it possible to contribute to the GAE standard SDK?

2017-05-18 Thread Ivo Bellin Salarin
Hi all, I have found a limitation of the testbed.init_search_stub method. I would like to propose a pull request. Is it possible to contribute? I have found its code on this repository:

Re: [google-appengine] Is it possible to contribute to the GAE standard SDK?

2017-05-18 Thread 'Alex Martelli' via Google App Engine
Ciao Ivo, enriching the testbed is definitely possible (and I have a vested interest in that happening, being a testing fanatic and one co-author of a prehistoric version of the testbed). However the GAE SDK, while available on github, is not developed there, but rather internally (other, newer

Re: [google-appengine] Re: What's up with Blobstore?

2017-05-18 Thread Jeff Schnitzer
One programmer’s opinion: I did a migration from the Blobstore to GCS some years ago. The docs for GCS were a little bit obtuse and took a little work to figure out, but the end result was satisfying - GCS is a vastly better blobstore than the old Blobstore. And the GCS API is much more powerful

[google-appengine] Re: IAP has a short timeout

2017-05-18 Thread Geoffrey Arnold
Quick follow-up: it appears the timeout is 1 hour. For comparison, when using the GAE Users API, the timeout is on the order of days. On Thu, May 18, 2017 at 11:49 AM, Geoffrey Arnold wrote: > Hello, > > We've enabled IAP on one of our apps. I haven't timed it