Re: [google-appengine] "Billing has not been enabled" error on project with enabled billing

2020-05-08 Thread John Kevin Asprec
Hi Alexander, Can you elaborate I'm not expert yet in GCP. I'm trying to make CI/CD from Gitlab. Thanks On Sat, May 9, 2020 at 6:13 AM Alexander Kislitsky wrote: > An error appears today on stable working project with enabled billing and > valid credit card. > Project working more than year.

[google-appengine] "Billing has not been enabled" error on project with enabled billing

2020-05-08 Thread Alexander Kislitsky
An error appears today on stable working project with enabled billing and valid credit card. Project working more than year. There weren't deploys or any changes were in app for a month. Redeploy doesn't help. Error appears on BQ table creation operation. -- You received this message because

[google-appengine] Re: gcloud crashed (UnicodeDecodeError): 'utf-8' codec can't decode byte 0xa9 in position 6507: invalid start byte

2020-05-08 Thread 'noverlyjoseph' via Google App Engine
Look to see if you have an "é" in any filenames/directories remove/replace them with English Alphabet letter. On Friday, May 8, 2020 at 5:48:39 AM UTC-4, John Kevin Asprec wrote: > > Hi guy's, > > I'm trying gitlab continuous deployment to gcp app engine but I'm > encountering this error. > >

[google-appengine] Alternative to IN (Filter)

2020-05-08 Thread Skm Villa
Hi Team, My code : List cells; return ofy().load().type(User.class).filter("geocells in", cells).limit(50).list(); Error [e~taxidealsnl/standard-project:dev.426523627618302404].: 2020-05-08 11:48:52.783 INFO 1 --- [Request0C1E463F] c.l.m.c.ExceptionHandlerController : Error ==The

Re: [google-appengine] Re: Google Cloud Run Container Status

2020-05-08 Thread 'David (Cloud Platform Support)' via Google App Engine
You mentioned you tried delaying port binding and it did not work, can you explain what happens exactly? As Cloud Run should start sending traffic to your application once you start listening on the port number so if you are delaying the port binding, it should work in your benefit. -- You

[google-appengine] Re: Can't add *.netlify.app to Authorized urls

2020-05-08 Thread 'David (Cloud Platform Support)' via Google App Engine
Hello, If you are referring to Credentials ->Create Credentials->OAuth Client ID->Web Application, I’m able to add “*.netlify.app” to my "Authorized redirect URIs" and "Authorized JavaScript origins”, maybe posting a screenshot or video showing the error would give the community a better

[google-appengine] Re: Any more migration stories?

2020-05-08 Thread 'Charlie Engelke' via Google App Engine
This is extremely helpful. Thanks for posting such detail. I hope we can use it to help people migrate more easily. On Thursday, May 7, 2020 at 3:38:57 PM UTC-7 goo...@ryanb.org wrote: > hi charlie, thanks for asking! > > my experience was similar to joshua's, if not quite so extreme. i've >

[google-appengine] Re: Is GAE standard billing method changed?

2020-05-08 Thread 'George (Cloud Platform Support)' via Google App Engine
Unfortunately, I cannot post a picture here. You might not see the "load page" feature, as this is not yet generally available. It should appear on the Quotas page under "IAM and Admin", where many App Engine quota items are listed. You need to click on one of the items for a new windows, where

[google-appengine] Re: Is GAE standard billing method changed?

2020-05-08 Thread Tapir
On Thursday, May 7, 2020 at 3:41:07 PM UTC-4, George (Cloud Platform Support) wrote: > > Hi Tapir. > > If you navigate to the Quotas page, click on the quota of interest, you'll > see on the column on the right a series of "load usage" links. Do you refer > to these links? In my case, they

[google-appengine] Re: How to mapping default services to other services ?

2020-05-08 Thread Linus Larsen
In java using std env you need to change the service (module) name to "default" in appengine-web.xml, ex: http://appengine.google.com/ns/1.0;> your app default And of course change the name to another name on your current default module. Should be simiular in other languages as

[google-appengine] Re: How to mapping default services to other services ?

2020-05-08 Thread 'David (Google Cloud Support)' via Google App Engine
Services are listed from top to bottom based on how recently they were deployed, meaning that recently deployed services appear at the top and older services appear at the bottom. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

[google-appengine] Re: Can't deploy flexible

2020-05-08 Thread 'George V. (Google Cloud Platform Support)' via Google App Engine
> > Upon searching for the error on older cases and as the error message > suggests, there are some cases where this behavior can be caused by some > internal operations. Our suggestion right now is to run the following > command [1] and the try to deploy your application again. > Could you

[google-appengine] How to mapping default services to other services ?

2020-05-08 Thread Kanti Vekariya
I want to replace default service to the first service how to do? -- 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] gcloud crashed (UnicodeDecodeError): 'utf-8' codec can't decode byte 0xa9 in position 6507: invalid start byte

2020-05-08 Thread John Kevin Asprec
Hi guy's, I'm trying gitlab continuous deployment to gcp app engine but I'm encountering this error. gcloud crashed (UnicodeDecodeError): 'utf-8' codec can't decode byte 0xa9 in position 6507: invalid start byte Is there anyone here encounter this? I'm deploying a dotnet core application.