[google-appengine] Re: Error using "futures" library on standard Python App Engine

2017-11-29 Thread 'Fady (Google Cloud Platform)' via Google App Engine
Hello Antonio, You have reached the correct forum, and someone should get back to you about it soon. Issue tracker is the right place to report a bug or to request a new feature. For further information about issue tracker, you can check this document

[google-appengine] Error using "futures" library on standard Python App Engine

2017-11-29 Thread Antonio Pérez
Hello! I think I've found a bug and created an issue here: https://issuetracker.google.com/u/0/issues/69930127 Could someone confirm that this is the right way? Thanks! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from

[google-appengine] Re: Node.js runtime getting 502 - bad gateway

2017-11-29 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Hello Gokul, this usually means that the App Engine service wasn't able to get a response from your application, which usually means it's not configured properly for use on App Engine. To get help in figure out what's going wrong you should post on Stack Overflow using one of the tags

[google-appengine] Re: Using a custom subdomain for appengine

2017-11-29 Thread Daniel Rindt
Dear Kamran, the output after setting up the domain doesn't show that you should use "ghs.googlehosted.com." please note the trailing dot. I found it in the support pages too: https://support.google.com/domains/answer/3251147 Thank you very much, Daniel Am Mittwoch, 29. November 2017 03:06:17

[google-appengine] Re: NDB: Querying for a value of None on a repeated property

2017-11-29 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
It comes down to how the Datastore distinguishes if an Entity property has a value or not. If a property has no value (aka it is never set and is None) than the Datastore is unable to filter on that specific property (since it doesn't have it) and will not return that Entity in a query. This is

[google-appengine] Re: Google Drive V3 and service account for get files list from Google Drive Account (C#)

2017-11-29 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Daniele, It looks as if this portion of your code doesn't work properly, or doesn't have any effect: if (files != null && files.Count > 0) { foreach (var file in files) { Console.WriteLine("{0} ({1}) {2}", file.Name, file.Id); } As a general observation: When it comes strictly to pro

[google-appengine] Re: Google Drive V3 and service account for get files list from Google Drive Account (C#)

2017-11-29 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Daniele, It looks as if this portion of your code doesn't work properly, or doesn't have any effect: if (files != null && files.Count > 0) { foreach (var file in files) { Console.WriteLine("{0} (

[google-appengine] Re: Google Drive V3 and service account for get files list from Google Drive Account (C#)

2017-11-29 Thread Daniele Volpe
Now all is working. I have add the service account email authorization in every files i want to search. Thank you for the help :) -- 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 fro

[google-appengine] Node.js runtime getting 502 - bad gateway

2017-11-29 Thread Gokul Kulkarni
Hi All, I have a node.js application, which runs very fine in the local environment without any issues, but I deploy the same in the GCP app engine and when I try to access any API I start getting 502 - Bad gateway error. I do not find anything in the logs. -- You received this message becaus

[google-appengine] NDB: Querying for a value of None on a repeated property

2017-11-29 Thread Janne Savukoski
Hi, I couldn't find an earlier question about this, so could someone explain why: “Querying for a value of None on a repeated property has undefined behavior; don't do that.”[0] This sounds very weird. Is this some curiosity with the datastore itself, or just some complication within the NDB l