[google-appengine] Anyone else getting Status 500 returned randomly for requests on GAE?

2016-10-12 Thread Kelly Ingram
I have a cron job setup to run every 20 minutes which has been running as expected until 2 days ago where I am now getting intermittent failures and GAE is returning a status of 500 with the WARNING message: While handling this request, the process that handled this request was found to be using

Re: [google-appengine] Créer un proxy avec Google Engine

2016-10-12 Thread 'Alex Martelli' via Google App Engine
En anglais s'il vous plait -- nous ne pouvons pas soutenir les clients en autres langues. Moreover...: App Engine does not run arbitrary customer code such as proxies: just web *applications*. *Compute* Engine is the Google product you may be looking for. So you may want to ask on https://groups

[google-appengine] Créer un proxy avec Google Engine

2016-10-12 Thread Sculteur Scul
Bonjour J'aimerai faire mon propre proxy mais les methodes ont changées depuis 2012 je n'arrive pas a le deploy merci de votre aide Cordialement -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop rec

Re: [google-appengine] Re: Task queue not executing tasks / backlogged

2016-10-12 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Thanasis, Could you email me directly with your project ID and task queue names, along with timeframes in recent days when this has occurred? Or if it isn't occurring at present, send an email immediately upon viewing it in future? You could also create a Public Issue Tracker issue

[google-appengine] Re: Dedicated memcache keeps flushing

2016-10-12 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As Memcache is not persistent long-term storage, keys are not expected to live long and can be evicted for reason explained in our documentation . As noted

[google-appengine] Re: How do you monitor your App Engine projects?

2016-10-12 Thread Thanasis Delenikas
I am using Stackdriver with a Java GAE project since its availability. I use it for measuring performance indicators and for generating alerts on certain conditions. It's great - very well integrated with the platform. You should definitely try it yourself to see if it suits you. On Friday, Oct

Re: [google-appengine] Re: Task queue not executing tasks / backlogged

2016-10-12 Thread Thanasis Delenikas
Hello Nick, No, they do not relate with the processing time. The later is quite constant - not very fast, but constant. Tasks just waited (and waited and waited) in the queue without getting processed. When they did find their way in the processing handlers, they took the same time as always.

Re: [google-appengine] I would like to delete my old .appspot.com url link

2016-10-12 Thread Barry Hunter
> what happen if there is a malicious website on .appspot.com that send > viruses or that scam people? how to report it? > https://support.google.com/code/contact/cloud_platform_report?hl=en -- You received this message because you are subscribed to the Google Groups "Google App Engine" group.

Re: [google-appengine] I would like to delete my old .appspot.com url link

2016-10-12 Thread Lord Rixuel
what happen if there is a malicious website on .appspot.com that send viruses or that scam people? how to report it? On Tuesday, October 11, 2016 at 7:28:07 AM UTC-4, barryhunter wrote: > > If you still have the Google Account that created it (ie you just deleted > the Gmail email address, not t

[google-appengine] Re: I would like to delete my old .appspot.com url link

2016-10-12 Thread Lord Rixuel
Account linked with Hotmail cannot be recovered On Wednesday, October 12, 2016 at 11:32:07 AM UTC-4, George (Cloud Platform Support) wrote: > > Hello, > > Thanks for posting your issue. > > If you have another account with Owner rights > ,

[google-appengine] Re: I would like to delete my old .appspot.com url link

2016-10-12 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello, Thanks for posting your issue. If you have another account with Owner rights , you can use it to log in and shut down your project in view of final deletion. Otherwise, you c

[google-appengine] Getting access to https://code.google.com/p/googleappengine/

2016-10-12 Thread 'Amir Rouzrokh' via Google App Engine
Hi, does anyone know how I can add a few engineers on my team to see issues on https://code.google.com/p/googleappengine/ ? They keep getting 403s. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop r

[google-appengine] Re: Get result of async operation to Google speech-to-text

2016-10-12 Thread Sam Nyavor
I am also getting a response with no result and dont know how to access the result even if there was a result. How do i know if there are no results? On Thursday, August 11, 2016 at 12:30:55 AM UTC, Bruno Leitão wrote: > > Hi all, > > I perform a async request to google speech-to-text, and now i

[google-appengine] Re: Endpoints v2 InconsistentApiConfigurationException

2016-10-12 Thread Thomas Wiradikusuma
Hi Nick, > Could you try to add the same @ApiClass annotation that you have on ApiV2.java to ApiV2Public.java and see if that prevents the error message? Yes, making the annotations identical in both classes prevents the error message. But, it means both must be authenticated, which defeats my

[google-appengine] Re: Issue with a new SSL Cert (You must verify ownership of this certificate's domain(s)in order to upload it)

2016-10-12 Thread Adam Jones
I'm also having this issue. It suddenly stopped working, months before it expires. I also bought the certificate at NameCheap. On Thursday, April 7, 2016 at 6:44:05 AM UTC-7, Raphael Savina wrote: > > Hi all, > > I'm trying to add HTTPS to an app but I'm stuck at the Upload cert page > with th

[google-appengine] Re: Issue with a new SSL Cert (You must verify ownership of this certificate's domain(s)in order to upload it)

2016-10-12 Thread Adam Jones
I"m having the exact same issue. Was previously working fine. I also signed up with NameCheap. On Thursday, April 7, 2016 at 6:44:05 AM UTC-7, Raphael Savina wrote: > > Hi all, > > I'm trying to add HTTPS to an app but I'm stuck at the Upload cert page > with the following: > You must verify

[google-appengine] Re: [objectify-appengine] Question on Transactions

2016-10-12 Thread Nicholas Okunew
Objectify requires the Work executed for a transaction to be idempotent. When a stale write occurs, the run block is executed again. In your example, this would happen if there were two concurrent writes on the entity that 'tk' points at. If you load inside the transaction, then someString will be

[google-appengine] Question on Transactions

2016-10-12 Thread Rajesh Gupta
Hello All, Is it ok to read the object outside of the transaction block, and then modify and save the object in the transaction block Or, should we always read and write the object with in the transaction block for the transactions to work properly private void prepare(Key tk) { final Tri