Re: [google-appengine] Re: Why isn't grpc supported on GAE standard?

2017-02-22 Thread Ivo Bellin Salarin
AFAIK, gRPC is not just meant to be used by mobile apps. gRPC means also huge performance improvements when compared to a classical http REST api. In my understanding, this is probably the reason for which the `google-cloud-spanner` python module (the spanner client library for the python runtime)

Re: [google-appengine] Re: Why isn't grpc supported on GAE standard?

2017-02-22 Thread 'George Suceveanu' via Google App Engine
You are right: mobile apps usage is just one of the use cases for gRPC. The keenly aware engineers do not rest idle, you can rest assured: they have plenty on their hands; and the gRPC on GAE does not enjoy least priority of all. On Wed, Feb 22, 2017 at 6:00 AM, Ivo Bellin Salarin <

Re: [google-appengine] Re: App Engine Flex Environment custom domain forwarded to appspot-preview.com

2017-02-22 Thread Nickolas Daskalou
Adam what is your private email address so I can PM you our app details? On 22 February 2017 at 06:30, 'Adam (Cloud Platform Support)' via Google App Engine wrote: > A change was made that caused some App Engine Flexible apps to redirect to >

[google-appengine] Re: GAE - python - standard - out of the box / open source CMS solutions

2017-02-22 Thread Jason Whatford
Ah - also https://gohugo.io is written in Go, not python. But looks like static blog is the way forward On Wednesday, February 22, 2017 at 8:00:16 PM UTC, Jason Whatford wrote: > > Hi Jordan, > >

[google-appengine] Re: GAE - python - standard - out of the box / open source CMS solutions

2017-02-22 Thread Jason Whatford
Hi Jordan, Thank you for your response. I do like GAE and the standard environment tbh - hoping that this isn't a signal that it's at risk... Looks like I'm going to have to either roll my own or figure out how to integrate a static blog as Zip Zit suggests. Zip Zit thanks for the suggestion

Re: [google-appengine] nickname field in GAE Standard logs

2017-02-22 Thread PK
Thanks I submitted this: http://code.google.com/p/googleappengine/issues/detail?id=13577 > On Feb 21, 2017, at 10:46 AM, 'Nicholas (Google Cloud Support)' via Google > App Engine wrote: > > I

[google-appengine] Trouble deleting an entity from it's key (believed to be a unicode issue)

2017-02-22 Thread Jory Pettit
I am having trouble deleting entities from keys in the GAE using python/ndb. I am able to retrieve the entity (problem) key from the page, but cannot figure out how to get it to delete. The GAE support page says it's as simple as retrieving the key and then deleting it, as seen below.

[google-appengine] Re: Endpoints not working locally (for GO)

2017-02-22 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Steven, Thanks for letting us know. This seems like something that we could take a look at on the Public Issue Tracker. In order to produce a report there, we'll need a few more details though, for your specific case: 1. How do you run the devserver exactly? 2. What's the exact output? 3.

[google-appengine] Re: 1366, "Incorrect string value"

2017-02-22 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions. You are correct to have filed the issue report on the Git repository, and @waprin is looking into it there. As he gave an ETA of ~24 hours (meaning you can

[google-appengine] Re: Any GAE EU region changes going on we should be aware of?

2017-02-22 Thread Linus Larsen
After some digging I found out that we've made some modifications on the mobile app, which makes it do several ajax requests rapidly. The result became somewhat strange. 1. Request1 starts a new instance 2. Request2 also starts a new instance since it takes aprox 20 secs to start a new

[google-appengine] "ERROR: (gcloud.app.deploy) The project [pj-name] already contains an App Engine application" when migrating from Python 2.5 to 2.7 (appcfg.py to gcloud)

2017-02-22 Thread ichirorocks
Hi. I have been maintaining old version of Google App Engine Python software by using appcfg.py to deploy. Now I got a notice from Google saying Python 2.5 will be disabled and I need to upgrade to 2.7. So I installed Python 2.7 & new SDK, and I'm trying to deploy my software by gcloud

[google-appengine] Re: Custom domain redirecting to appspot URL

2017-02-22 Thread David Miller
We appear to be having the same issue - also can't get subdomains to map to a service. - Flexible environment with a container. On Saturday, February 18, 2017 at 10:05:05 AM UTC+11, Mario Gallegos wrote: > > Thanks John, but what i'm trying yo do is to avoid my app to redirect to >

[google-appengine] Re: deploy is very slow

2017-02-22 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Alex, Slow deploys can be caused by many factors. If you want to submit a Public Issue Tracker issue for us to look at, you should consider including the following information: 1. The size on disk of your project 2. Whether you're

[google-appengine] Re: Endpoint API not working properly via API Explorer after deployment to App Engine Standard

2017-02-22 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey George, Thanks for clarifying that. Any future users reading this thread will surely find your responses to be clear and hopefully of use in their own case. Yes, it's indeed the case (see the docs article "Using Firebase and App Engine Standard Environment in an Android App - Configuring

Re: [google-appengine] Re: Custom domain redirecting to appspot URL

2017-02-22 Thread Nickolas Daskalou
John this is happening to us too. What is your private email address so I can PM you our app details? On 20 February 2017 at 16:09, 'John Lowry' via Google App Engine < google-appengine@googlegroups.com> wrote: > Can you send me your app ID and I will provide help. > > On Saturday, February

[google-appengine] Custom domain SSL issue

2017-02-22 Thread Rodrigo Ferreira
Can someone help me figure out what is wrong with this SSL certificate installation on GAE? upholdex.tk I get a net::ERR_CERT_AUTHORITY_INVALID error on Chrome and a SEC_ERROR_REVOKED_CERTIFICATE on Firefox. The certificates were issued by StartSLL. I have tested the installation with

[google-appengine] Re: Custom domain SSL issue

2017-02-22 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Rodrigo, It appears this is expected behaviour as Startcom root certificates are distrusted by Google and Chrome. See this Google Security Blog post for details. So, it seems you should get a new root

[google-appengine] Re: Transaction handling in relation to ConcurrentModificationException

2017-02-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Louise, Your code starts with a “try { “ but doesn’t throw any exception. You might be interested in the DatastoreTimeoutException as exemplified in the “Handling Datastore Errors” online document . A sample