[google-appengine] Re: /_ah/bounce

2017-02-09 Thread Jason Myers
We've noticed this issue too. I also noticed that the bounce messages are now coming in as `quoted-printable` encoded (notice for example the mime boundaries are `; boundary=3DX`). This must have changed recently. If you have access to the payload before it is passed through to

[google-appengine] Re: FTP alternative

2017-02-09 Thread Emanuele Ziglioli
Thanks Nick I've checked out your code and it looks similar to other work I've done myself before, adapting apache commons so that it would use GAE's low level support for sockets. It did work for a while but then it stopped. When I complained about they told me simply that GAE don't support

[google-appengine] Re: Payment card marked "The account is closed", cant settle bills

2017-02-09 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Arnold! You should open a billing issue for this question, as this forum is intended for discussion of development on the platform and services, design patterns, architecture, etc. Wishing you the best of luck with the

[google-appengine] Re: FTP alternative

2017-02-09 Thread Nick
Sockets and Threads are both first class features of GAE, they should be totally reliable. Historically appengine does suffer from network configuration errors that don't get picked up unless they're heavily used (i.e. geographical issues and unusual ports) - it seems monitoring is based on

[google-appengine] Re: FTP alternative

2017-02-09 Thread Emanuele Ziglioli
Interesting so you're saying that an error like: System error: errno: 113, detail:no route to host java.net.SocketException: System error: errno: 113, detail:no route to host would be due to a network configuration error on Google's part? How should I report it then? On Friday, 10 February 2017

[google-appengine] Re: Discovery Doc generation missing "format" tag for doubles

2017-02-09 Thread 'Alex (Cloud Platform Support)' via Google App Engine
Thanks for providing additional details, it does seem to be a bug for which I will make a defect report on the google-cloud-platform Issue Tracker. Further details will be posted here on how to follow this issue’s resolution. -- You received this message because you are subscribed to the

Re: [google-appengine] Re: 502 Bad gateway error

2017-02-09 Thread Vinay Chitlangia
On Thu, Feb 9, 2017 at 7:52 PM, 'Nicholas (Google Cloud Support)' via Google App Engine wrote: > I realize that we've already begun investigating this here but I think > this would be most appropriate for the App Engine public issue tracker. > The issue is

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

2017-02-09 Thread Aron Adler
Hi, I have the same problem. Could someone please advise on how to whitelist my custom domain now that the whitelist request form is gone? Thanks On Tuesday, 31 January 2017 10:49:03 UTC, himanshu kapoor wrote: > > Hi Guys, > > I have mapped custom domain in my application but it redirects to

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

2017-02-09 Thread George Sxi
Hello Nick, Happy to see that my post structure helped and in my turn let me thank you for the prompt response. I am quoting below the code i used for the endpoint called "MyEndpoint'. I tried to keep the changes at a minimum as the purpose was to test the functionality at first. I will keep

[google-appengine] Payment card marked "The account is closed", cant settle bills

2017-02-09 Thread Arnold Minde
It seem I cannot pay for my last month bill because the Payment card in billing section is marked "The account is closed". I suspect google tried to bill the card and it failed for whatever reason, and decided to mark it as such. I use the same card in other billing accounts, and in those

Re: [google-appengine] Re: 502 Bad gateway error

2017-02-09 Thread 'Nicholas (Google Cloud Support)' via Google App Engine
I realize that we've already begun investigating this here but I think this would be most appropriate for the App Engine public issue tracker. The issue is leading to an increasingly specific situation and I suspect will require some exchange of code/project to reproduce the behavior you've

[google-appengine] Memcache cas never updating

2017-02-09 Thread adriano_brasileiro
I have an application in which I use the memcache to avoid race conditions by retrieving keys using get(..., for_cas=True) and saving using cas. However, ever since yesterday 18:00 (GMT-02) cas is always returning False for me. Even a code as simple as this: memcache.add('key', 'A') memclient

[google-appengine] Error: NOT_FOUND

2017-02-09 Thread Sree Harsha Chintamani
Hi, I have tried deploying an application using following command appcfg.sh update [app_location] I deployed without adding option version which has overridden working version. I'm unable to do a rollback of the update. I tried creating a new version and I receive Error: NOT_FOUND error. Can

[google-appengine] Use of Pandas in GAE

2017-02-09 Thread Juan Antonio Fernández Sánchez
Hi everyone! I'm trying to run Pandas library in GAE app. I know that it use C internally and I'm wondering if exist any simple solution to execute this is GAE of if I've to think to deploy this microservice in a Compute Engine container. Any help will be welcome, thank you so much! -- You

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

2017-02-09 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey George, >From the code you sent, it appears that one possible explanation presents itself. The DatabaseReference.setValue (Object) method returns a Task object

[google-appengine] Re: Use of Pandas in GAE

2017-02-09 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Juan Antonio, As you noted correctly, in the Standard Environment , only pure python apps are supported. However in the Flexible Environment , there is no such

[google-appengine] Re: FTP alternative

2017-02-09 Thread Jim
"More future-oriented people might resent having to use an FTP server" Ha, well said. We have a few regularly scheduled FTP pulls that we need to get so we have a VM instance start up on a schedule, execute the FTP downloads, push the data to our GAE app, then the VM shuts itself down.