Re: [google-appengine] Re: dispatch.yaml not routing

2022-03-25 Thread 'sivaranja...@google.com' via Google App Engine
Hi , The following app.yaml file should work with Gatsby using the handlers like handlers: - url: / static_files: public/index.html upload: public/index.html - url: /((.*\/)*[^\/]+\.[^\/]+)$ static_files: public/\1 upload: public/.* - url: /(.*)$ static_files:

[google-appengine] 50k pages hosting on nodejs appengine

2022-03-25 Thread 'Rajesh G' via Google App Engine
Hello, I am planning to host 50k statically generated pages on nodejs appengine. The pages are generated using gatsby. Will it affect the performance of the server? Can it be hosted on the F1 instance? -- Support Team www.servicefolder.com *Field Service Software on Google Cloud Platform and

[google-appengine] GPU quotas increased but error on the excess of my quota

2022-03-24 Thread Claudio Russo
I try to make a managed notebook in Vertex AI. I requested and obtained an increase in my quota but when I create the notebook it keeps giving me error on the excess of my quota. I don't know why. "QUOTA_EXCEEDED error message" -- You received this message because you are subscribed to the

Re: [google-appengine] New weird error.

2022-03-23 Thread Joshua Smith
> On Mar 23, 2022, at 3:07 PM, 'Amit Sinha' via Google App Engine > wrote: > > Hi Joshua, > > As you mentioned, this started to happen recently, could you please confirm > if you still have this issue? > Error reporting says it is still happening. Most recent was about 3 hours ago. (Note

[google-appengine] Re: New weird error.

2022-03-23 Thread 'Amit Sinha' via Google App Engine
Hi Joshua, As you mentioned, this started to happen recently, could you please confirm if you still have this issue? I was trying to find any recently reported issues related to the error, but it seems like nothing has been reported yet. By mentioning the NDB datastore , are you referring to

[google-appengine] Curious about Cloud Functions or Cloud Run?

2022-03-23 Thread wesley chun
I know we have lots of App Engine users here (duh), but if you were curious about our other pair of serverless products (Cloud Functions and Cloud Run ), I'm giving a real short (~20-min) high-level serverless

[google-appengine] Re: Want to use more GPU

2022-03-23 Thread 'George (Cloud Platform Support)' via Google App Engine
You may consider asking for an increase of your project's GPU quota. You may find relevant instructions in replies to the "How to request GPU quota increase in Google Cloud" question in

[google-appengine] Want to use more GPU

2022-03-23 Thread Cong Nguyen Thanh
Current, I'm using 4 GPU at the same time. I want to use more GPU, but can not extend GPU quotas. How can I add more GPU? -- 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,

Re: [google-appengine] Re: dispatch.yaml not routing

2022-03-21 Thread 'Rajesh G' via Google App Engine
FYI, I explored gatsby-express-plugin It does not have the above two issues. Please see bgsample.appspot.com/gatsby-express See the

[google-appengine] Invitation to private preview testing for App Engine Flex Private VMs (IPs)

2022-03-18 Thread 'GCLB Serverless Contact' via Google App Engine
You are invited to nominate your app to test a proposed feature for App Engine Flexible Private VMs - What it does: It provides VMs with only internal IP addresses, and there is no external IP address. - Benefits: Regular ingress traffic will work using the regular URL, but without

Re: [google-appengine] Re: dispatch.yaml not routing

2022-03-17 Thread 'Rajesh G' via Google App Engine
I am further continuing to explore deploying a gatsby project to appengine I created an appengine service called 'gatsby', and I want to serve in the following manner https://bgsample.appspot.com/gatsby

[google-appengine] Re: Google App Engine Front Controller removes Cookies from Response Header

2022-03-17 Thread 'barrado' via Google App Engine
Hi, According to the App Engine Standard documentation some headers are ignored and removed from the request response. Also headers with non-ASCII characters in either the name or value are removed. I

[google-appengine] Re: The region us-west2 does not have enough resources - on deployment

2022-03-15 Thread 'Lluis Munoz Ladron de Guevara' via Google App Engine
If you suspect that you might be affected by an outage I encourage you to check the Google Cloud Status Dashboard . However please note that if the incident is affecting a limited amount of users it might not be shown in the Dashboard, more details can be found

Re: [google-appengine] Re: dispatch.yaml not routing

2022-03-15 Thread 'Rajesh G' via Google App Engine
Ok. It works now. Thanks On Mon, Mar 14, 2022 at 9:35 PM 'Jofre Riba Sánchez' via Google App Engine < google-appengine@googlegroups.com> wrote: > Your app.js in the prolisting folder of the example repo does not have a > handler for the /prolisting path. This is why express can't get the >

[google-appengine] Google App Engine Front Controller removes Cookies from Response Header

2022-03-15 Thread Ajith Kumar
Google App Engine's Front Controller removes the cookies from the response header set by my Laravel Framework 8.83.4 / PHP 7.4 application. Cookie's are being set properly when hosted locally. But, they are not set when I hosted it on Google's App Engine. So, Users can't persist the login

[google-appengine] Android build faild

2022-03-15 Thread Aram Mkrtchyan
Hi when I'm trying to build my project I got this error Execution failed for task ':app:mergeDebugJavaResource'. > A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade > More than one file was found with OS independent path

[google-appengine] Re: The region us-west2 does not have enough resources - on deployment

2022-03-14 Thread Pip Jones
Yes that's correct (as I mentioned in my last paragraph). But the difficulty there is App Engine doesn't allow you to just move a VM into another region - you have to create a new project and rebuild the infrastructure: App Engine, GCS, Cloud Functions, PubSub, Networking, Service Accounts

[google-appengine] Re: The region us-west2 does not have enough resources - on deployment

2022-03-14 Thread 'Andres Fiesco Casasola' via Google App Engine
Checking Stackoverflow threads with the same error, changing the VM to a different zone should help you. Here are other cases of users reporting the same error that can be helpful: -

[google-appengine] Re: dispatch.yaml not routing

2022-03-14 Thread 'Jofre Riba Sánchez' via Google App Engine
Your app.js in the prolisting folder of the example repo does not have a handler for the /prolisting path. This is why express can't get the /prolisting [1]. Fix this by adding an additional handler for the path in app.js: app.get('/prolisting', (req, res) => { res.status(200).send('Hello,

[google-appengine] Re: The region us-west2 does not have enough resources - on deployment

2022-03-13 Thread Pip Jones
FYI. The site automatically restarted the instances after 18 hours of outage at about 6am GMT. So I presume it simply was the zone being exhausted and nothing to do with my specific instances, and my 10 hours of trying to fix it was all in vain. Next time I won't bother. On Saturday, 12 March

[google-appengine] Re: When is the security assessment not required?

2022-03-12 Thread NoCommandLine
Someone asked a related question about GMAIL on Reddit and a Googler responded. You might find the answer useful for your

[google-appengine] The region us-west2 does not have enough resources - on deployment

2022-03-12 Thread Pip Jones
When trying to deploy my App Engine Flex app today, I am getting this error, after the build has completed. `ERROR: (gcloud.app.deploy) Error Response: [9] An internal error occurred while processing task /app-engine-flex/flex_await_healthy/flex_await_healthy>2022-03-12T14:09:32.742Z6575.hg.2:

[google-appengine] dispatch.yaml not routing

2022-03-11 Thread 'Rajesh G' via Google App Engine
Hi, I created two simple services based on nodejs and hello-world sample. I am trying to explore dispatch.yaml My dispatch.yaml. dispatch: # Send all listing traffic to the listing frontend. - url: "*/prolisting/*" service: prolisting - url: "*/prolisting" service: prolisting - url: "*/*"

[google-appengine] Re: When is the security assessment not required?

2022-03-11 Thread NoCommandLine
1. If you set the publishing status of your App to 'Testing', you don't have to submit it for Security Assessment (you only have to submit for security assessment when you want to go to Production). The downside is that your tokens expire every 7 days

[google-appengine] Re: When is the security assessment not required?

2022-03-10 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello, Replies to most of your questions are to be found on the "OAuth API verification FAQs" page

[google-appengine] When is the security assessment not required?

2022-03-10 Thread Christos Angelopoulos
I would like to create a app that can upload video to youtube, let's say automatized youtube channel, where everything is done by API. So i can run a script and upload everything i want from a folder on my desktop. My question is about the O'Auth 2.0 from google. In my use case, is there any

[google-appengine] Re: Sporadic server error since March 1 (Python)

2022-03-10 Thread Viktor Bresan
In this case cold boot can not be made any faster by making code simpler. It's just a simple db (db has less than 10 rows) lookup and response. If that is something that F1 instance is not able to serve from cold boot - it is useless. I would also like to add that for such simple queries

[google-appengine] Re: Sporadic server error since March 1 (Python)

2022-03-09 Thread 'Horace (Cloud Platform Support)' via Google App Engine
Thank you for sharing your experience with us. You are saying that your machine workload does not match the machine type requirement and that you didn’t expect to upgrade to a class F2 instance. I will try to help. There are some ways to mitigate this error message [1] such as: 1.

Re: [google-appengine] No Search Solution?! WOW.

2022-03-09 Thread Kaan
You couldn't have put it better Joshua It's concerning because if the lack of email and search services is to prevent a clash, then Google sees cloud users as competition. If so, you have to also wonder if some of the bugs are intentionally left as is, for example back in the day if a request

[google-appengine] Re: Sporadic server error since March 1 (Python)

2022-03-08 Thread Viktor Bresan
I had similar problem few months ago when suddenly extra instances were created for another app that wasn't receiving any extra traffic. And I am not the only one who experienced that. Something is obviously happening on the google side, it's ridiculous that I can't serve a simple request with

Re: [google-appengine] No Search Solution?! WOW.

2022-03-08 Thread Joshua Smith
Okay, that's hilarious. Users: Can we send email? Google: Nah. Sending email is too hard. You have to use a 3rd party for that. Users: Aren't you the same company that makes gmail, the most popular email service on the planet? Google: Yeah. What's your point? Users: Never mind. Can we search for

[google-appengine] Re: No Search Solution?! WOW.

2022-03-08 Thread 'Lluis Munoz Ladron de Guevara' via Google App Engine
I found this documentation regarding how to have a full text search in Firestore. Additionally I found

[google-appengine] Re: Sporadic server error since March 1 (Python)

2022-03-07 Thread 'David (Cloud Platform Support)' via Google App Engine
Glad to hear that switching to a F2 instance class fixed the issue. It’s hard to say whether the issue was caused by a lack of resources even after looking at the log you provided. Which is why I would recommend you to contact GCP support If this issue

[google-appengine] Re: No Search Solution?! WOW.

2022-03-07 Thread Jim
As I'm sure you are aware, GAE Standard has the Search service, but this is being phased out and no replacement is available on GAE Flex. The lack of an integrated Search offering kinda blows a hole in the entire "server-less platform" vision. On Monday, March 7, 2022 at 10:05:57 AM UTC-6

[google-appengine] Re: No Search Solution?! WOW.

2022-03-07 Thread 'barrado' via Google App Engine
Hi, As per now there isn't any built-in search solution for Cloud Firestore. But you can submit a feature request for the product team to consider this functionality. On Sunday, February 27, 2022 at 1:18:51 AM UTC+1 kaan...@gmail.com wrote: > The title says it all, I was checking the

[google-appengine] Re: 404 after project wrongly suspended for social engineering and then reinstated

2022-03-06 Thread Sudhakar Vuddanti
Digital IT Cloud is the best *digital marketing training institute in Hyderabad * provides good working and learning environment ,knowledge for every student.Digital IT Cloud gives more space for the students get work experience on real time

[google-appengine] Re: 404 after project wrongly suspended for social engineering and then reinstated

2022-03-06 Thread Tycho Bellers
Hmm, that is interesting, although I'm not able to reproduce that behavior when hosting the website locally. (Other than the blank page when accessing /commands, which was caused by this line

Re: [google-appengine] Digest for google-appengine@googlegroups.com - 3 updates in 3 topics

2022-03-06 Thread Yuling Chen
Hello, I am currently on holiday. Please contact other members of my team if you need immediate assistance. I will reply to you as soon as possible when I am back on Mar. 11th (Friday). Thank you, Yuling Mit freundlichen Grüßen / Best regards Yuling Chen Business

[google-appengine] Re: Sporadic server error since March 1 (Python)

2022-03-05 Thread Viktor Bresan
Many thanks for your tips! The trace is not available for failed request, for all other it is. I haven't pasted log earlier, perhaps I should, because (in my opinion) it isn't showing anything. Here it is (attached). Meanwhile, I have switched to instance class F2 and so far the problem did

Re: [google-appengine] Entities Not Visible in Developer Console

2022-03-05 Thread wesley chun
Sounds good Dave... glad you were able to access your Entities again. In general, console.*developers*.google.com is just a shortcut to the API manager, and that's the only time that link should be used. For everything else, you should be using console.*cloud*.google.com. - - - - - - - - - - - -

[google-appengine] Re: .NET Core 3.1 running in GAE Flex - Thread Pool Starvation

2022-03-04 Thread 'Shawn Wu' via Google App Engine
I have confirmed there is no recently update for flexible environment for .NET[1]. The issue seems to be specific impact your service, I recommend you to open an support case, allowing support team to investigate further. [1]

[google-appengine] Re: 404 after project wrongly suspended for social engineering and then reinstated

2022-03-04 Thread 'Felipe Bergallo Corral' via Google App Engine
Ok, I've noticed something that I didn't before: Whether or not the path (url) you use has a trailing slash or not affects the outcome. For example: https://discord-dictionary-bot.uc.r.appspot.com/docs/settings -> 404 (not the catch-all you've set up)

[google-appengine] Re: Sporadic server error since March 1 (Python)

2022-03-03 Thread 'Rogelio Monter Rodriguez' via Google App Engine
The error you’re sharing could be caused by many different reasons. Please check Logs Viewer in Google Cloud, as shown in this Using Logs Viewer documentation, and share what you see

[google-appengine] Sporadic server error since March 1 (Python)

2022-03-03 Thread Viktor Bresan
Since two days ago I have started to experience sporadic server errors. I.e. for a period of time, everything is working OK, and then for a period of time all calls to my python scripts are failing. The following message is displayed in browser: Error: Server Error The server

Re: [google-appengine] Entities Not Visible in Developer Console

2022-03-01 Thread 'Dave Howes' via Google App Engine
Thanks for this response - it turned out that I was using the wrong URL - I was going to https://console.developer.google.com/datastore ( and have been for years ) - changing to https://console.cloud.google.com/datastore fixed things Dave On

Re: [google-appengine] Entities Not Visible in Developer Console

2022-02-27 Thread wesley chun
There have been no changes AFAIK (as far as I know). Going to https://console.cloud.google.com/datastore brings up all my DS entities as expected. However, people sometimes run into problems if they have >1 Google login, say accounts for work, personal, school, etc. Click on your avatar in the

[google-appengine] Entities Not Visible in Developer Console

2022-02-27 Thread 'Dave Howes' via Google App Engine
I have an application that has been running on App Engine Standard edition for a number of years. Today, when I went to the Datastore page of the developers console, I can't see any Entity kinds, and get the following message : "Request had invalid authentication credentials. Expected OAuth 2

[google-appengine] No Search Solution?! WOW.

2022-02-26 Thread Kaan
The title says it all, I was checking the documents to see what the current intended approach is, assumed Firestore has a searchable field for full text search at this point But nope, not only that, no direct solution at all -- You received this message because you are subscribed to the

Re: [google-appengine] Re: Questions Re: App Engine bundled services for Java 11

2022-02-24 Thread 'Martin Levett' via Google App Engine
Actually nevermind - the Users API bit is working now. It was due to some missing configuration values on the application side. On Thursday, 24 February 2022 at 20:09:10 UTC+11 Martin Levett wrote: > Great thanks - very useful. > > A related question - I'm trying to upgrade an old app to Java

Re: [google-appengine] Re: Questions Re: App Engine bundled services for Java 11

2022-02-24 Thread 'Martin Levett' via Google App Engine
Great thanks - very useful. A related question - I'm trying to upgrade an old app to Java 11 using the new bundled services but having an issue with Users API. The app is configured in web.xml so that a specific path (i.e. /system) requires admin role. In the past attempting to access this

[google-appengine] Re: Error in App Engine/Console

2022-02-23 Thread 'Jose Perez Sanchez' via Google App Engine
To manage the tomcat service: systemctl stop | start | restart | status tomcat8 If we are installing tomcat8 in an OpenStack instance, and due to the limitations of virtual machines in pseudorandom generation, it is necessary to modify the file

Re: [google-appengine] Re: Questions Re: App Engine bundled services for Java 11

2022-02-22 Thread 'Ludovic Champenois' via Google App Engine
Hi, We have added Java 11 bundled services samples instruction under https://github.com/GoogleCloudPlatform/java-docs-samples/tree/main/appengine-java11-bundled-services, with 1 full sample available (Datastore). Try the instructions on taskqueues-deferred, pull and push samples for Java8,

[google-appengine] Re: Questions Re: App Engine bundled services for Java 11

2022-02-22 Thread 'Matt Larkin' via Google App Engine
Hi Martin, >- Does this allow enqueueing tasks within a datastore transaction? I can see from the Javadoc that the Queue.add(Transaction txn, TaskOptions taskOptions) method is still there but not sure how the bundled services work internally. i.e. are they proxying to the new services or

Re: [google-appengine] Re: GAE standard and flex: support PHP 8

2022-02-22 Thread A M
Thank you for that information. On Tuesday, February 22, 2022 at 6:10:36 AM UTC-5 bergall...@google.com wrote: > Hey there, > > The link provided by David was using the Flexible URL and changing it to > Standard, so by default it linked to PHP 5, which is the older version for > GAE Standard.

Re: [google-appengine] Re: GAE standard and flex: support PHP 8

2022-02-22 Thread 'Felipe Bergallo Corral' via Google App Engine
Hey there, The link provided by David was using the Flexible URL and changing it to Standard, so by default it linked to PHP 5, which is the older version for GAE Standard. By simply changing the php in the url to php7

[google-appengine] Re: 404 after project wrongly suspended for social engineering and then reinstated

2022-02-22 Thread 'Felipe Bergallo Corral' via Google App Engine
Darrell mentioned traffic allocation, but in your response you stated that your only routing configuration is in your app.yaml file. What Darrell was referring to was the versions page , which should contain every version you've uploaded to

[google-appengine] Authenticated gmail

2022-02-22 Thread Ádám Suller
Hello, I want to ask for help with: I am working on creating a newsletter service. If I have a gmail address on my website to send the newsletter, I would like my own server to authenticated gmail email. If the address is not authenticated, the message will arrive as follows: Gmail was unable

[google-appengine] Questions Re: App Engine bundled services for Java 11

2022-02-22 Thread 'Martin Levett' via Google App Engine
Not sure if this is the best place to ask but can't find any dedicated preview google group for the 2nd-gen bundled services. It seems like this could save us a lot of effort to get up to Java 11 but I've got a couple of questions: - Does this allow enqueueing tasks within a datastore

[google-appengine] Re: I have few questions about app engine

2022-02-21 Thread NoCommandLine
*Q:* >> Do I pay for SSL for the website? Google does host the domain if that matters. << *R:* If you're using the SSL from Google ('Enable Managed Security' on GAE's Settings page), then it is free. It's the free certificate from Lets Encrypt which Google automatically renews for you every

[google-appengine] Re: Outbound Static IP for App Engine Flex Environment

2022-02-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Maha, You are right, there is no means offered as yet, to associate a static IP to an App Engine Flexible instance. You may consider setting up a load balancer, and use Cloud Load Balancing and serverless NEGS to reserve a static IP address for your load balancer, as detailed on the

[google-appengine] Outbound Static IP for App Engine Flex Environment

2022-02-21 Thread Maha Farhat
Hi, I want to know how we can attach a static IP to the App engine instance using a flexible environment. According to the documentation this could be achieved for the standard environment using vpc_access_connector, but have not found anything for the flexible environment. Regards, --

[google-appengine] I have few questions about app engine

2022-02-21 Thread John Floyd
1. First, in standard how long does the app take to start up for a small WordPress site. If I set the instances to 0 and 1 when the visitor is on the site then leaves and the instance is 0 once again. is there any noticeable lag for the user? 2. How much does it cost to run a small WordPress

Re: [google-appengine] Digest for google-appengine@googlegroups.com - 5 updates in 4 topics

2022-02-19 Thread Yuling Chen
Hello, I am currently on holiday. Please contact other members of my team if you need immediate assistance. I will reply to you as soon as possible when I am back on Feb. 21st (Monday). Thank you, Yuling Mit freundlichen Grüßen / Best regards Yuling Chen Business

Re: [google-appengine] Re: app engine location change .

2022-02-18 Thread 'Sumit Pawar' via Google App Engine
Thanks for your info On Fri, Feb 18, 2022, 12:23 AM 'Andres Fiesco Casasola' via Google App Engine wrote: > You cannot change an app’s region > after it has been > deployed; however, there is already a request for this feature, and the > App

[google-appengine] Re: app engine location change .

2022-02-17 Thread 'Andres Fiesco Casasola' via Google App Engine
You cannot change an app’s region after it has been deployed; however, there is already a request for this feature, and the App Engine product team is evaluating it but there is no resolution time. Here is some information that you might find

[google-appengine] app engine location change .

2022-02-17 Thread 'Sumit Pawar' via Google App Engine
hello , i created the app engine in gcp its location was 'us' now .i want to change the location into 'london'.so please guide for that . -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving

[google-appengine] Managing Google Cloud Platform Projects - Someone else project is listed in my account???

2022-02-16 Thread Jim Range
Today someone else's project popped up in my "No Organization" list of projects in the google cloud console. There is a message that I am an authorized user of this strangers project. The owner of the project, Hassan Kibiti, lives in Nairobi, Kenya. I live in Chicago, IL USA and I do not know

[google-appengine] Re: 404 after project wrongly suspended for social engineering and then reinstated

2022-02-15 Thread Tycho Bellers
Deploying to a new service works, but then you have to specify that service in the URL which is not ideal. I still haven't managed to get it working again with just the default URL ( https://discord-dictionary-bot.uc.r.appspot.com/). I don't think I'm able to open a ticket because I'm just

Re: [google-appengine] Re: GAE standard and flex: support PHP 8

2022-02-15 Thread A M
Hi David, The link you provided to "periodically check the GAE standard and GAE flex PHP release notes" seems to link to PHP 5.5 release notes.

[google-appengine] Re: Gcloud deploy got issue with reactjs application

2022-02-15 Thread 'Horace (Cloud Platform Support)' via Google App Engine
Hello, It looks like this issue was already reported through a Public Issue Tracker [1] with the same error regarding Yarn version (2.4.3) returning a 404 code. I invite you to click on the + to indicate that you are also affected with the issue. Kindly advise if this work on your local

[google-appengine] Re: Cron jobs silently failing

2022-02-15 Thread Travis Marble
I did some more digging and found that it was an issue with dotnet and how error reporting differs on local/production. I had already been isolating my /api endpoints from this error handling, and thought I was doing the same with my /cron endpoints, but I was not. On Tuesday, February 15,

[google-appengine] Cron jobs silently failing

2022-02-15 Thread Travis Marble
I have noticed that some of my Cron jobs were silently failing, the dashboard in the cloud scheduler show success. Digging into the logs, I can see the exception being thrown by the request, but the request shows in the logs as being successful. To further test this I created an endpoint that

[google-appengine] Re: 404 after project wrongly suspended for social engineering and then reinstated

2022-02-15 Thread 'goya' via Google App Engine
I have used the GitHub repository linked in your website to reproduce this issue, and it has worked properly without any changes, so maybe you could try to redeploy again. Another thing you could try is to deploy into a new service and see if you get the same behaviour there too. If this

[google-appengine] Gcloud deploy got issue with reactjs application

2022-02-14 Thread Crys from Zestif
Hi Google team When i deploy reactjs with nodejs14 runtime app to gcloud i got issue Installing Yarn v2.4.3 Step #2 - "build": Step #2 - "build": Running "bash -c curl --fail --show-error --silent --location

[google-appengine] vpc access connector failed to get healthy

2022-02-14 Thread Vinit R
We are using app engine . When trying to create a VPC connector, we are getting the error : vpc access connector failed to get healthy, pls check GCE quotas , logs & org policies & recreate Any help will be appreciated. Thank you ! -- You received this message because you are subscribed to

[google-appengine] Re: gcloud app deploy error - gcloud crashed: Failed to establish a new connection

2022-02-14 Thread 'George (Cloud Platform Support)' via Google App Engine
This error is quite often indicative of local networking issues, especially proxies. If you are behind a corporate proxy or firewall, the Google Cloud CLI might not be able to access the internet with its default settings. You'll need to preform extra configuration steps to solve the issue.

[google-appengine] gcloud app deploy error - gcloud crashed: Failed to establish a new connection

2022-02-12 Thread Sangram Sinha
Hi, I am getting below error while trying to deploy my django app from gcloud sdk below are the command used gcloud init and gcllod app deploy below is the error message: ERROR: gcloud crashed (TransportError): HTTPSConnectionPool(host='oauth2.googleapis.com', port=443): Max retries

Re: [google-appengine] Re: Server Side Custom domain configuration

2022-02-11 Thread 'Felipe Bergallo Corral' via Google App Engine
Hey, I do believe those are the right steps but the screenshots you've attached state that the DNS configuration isn't properly configured - it says that the registry of the Certificate Authority Authorization of your domain has denied the activation of the certificate. If I visit

[google-appengine] Re: 404 after project wrongly suspended for social engineering and then reinstated

2022-02-09 Thread Tycho Bellers
I have already tried redeploying a new version, but that does not have any effect. The only routing configuration I have is in app.yaml: runtime: nodejs14 handlers: # Serve all static files with urls ending with a file extension - url: /(.*\..+)$ static_files: dist/\1 upload: dist/(.*\..+)$ #

[google-appengine] Re: 404 after project wrongly suspended for social engineering and then reinstated

2022-02-09 Thread 'Darrell (Cloud Platform Support)' via Google App Engine
Hi, This sounds like a routing issue. Can you try redeploying your app as a new version and migrate all traffic[1] to that version? If that does not work, can you provide some information about how you are routing your requests[2]? [1]

[google-appengine] 404 after project wrongly suspended for social engineering and then reinstated

2022-02-08 Thread Tycho Bellers
I am using app engine to host a website for my Discord bot. My website was wrongly suspended for "social engineering" and shortly after was reinstated after an appeal (this has happened twice already). The emails I received mentioned a specific URL of my website:

[google-appengine] Re: App Engine Standard - app:invalid port 8080

2022-02-07 Thread Jason Collins
To be clear: I meant the App Engine message was pretty misleading. Your message was fine. :) On Monday, 7 February 2022 at 09:55:13 UTC-8 zhenyang@gmail.com wrote: > Sorry about the message. > > Thank you for the information. > I will try to bind directly to port 8080. > > Thanks Jason >

[google-appengine] Re: App Engine Standard - app:invalid port 8080

2022-02-07 Thread Chong Zhen Yang
Sorry about the message. Thank you for the information. I will try to bind directly to port 8080. Thanks Jason On Monday, February 7, 2022 at 10:02:54 AM UTC+8 jason.a...@gmail.com wrote: > That's a pretty misleading message; don't worry about it. > > If you bind to $PORT, you'll get an nginx

[google-appengine] Re: App Engine Standard - app:invalid port 8080

2022-02-07 Thread 'George (Cloud Platform Support)' via Google App Engine
For related detail, you may check the "Application startup" sub-chapter of the "Node.js Runtime Environment" page. On Sunday, 06 February 2022 at 11:41:31 UTC-5 zhenyang@gmail.com wrote: > Hello, > >

Re: [google-appengine] Re: Server Side Custom domain configuration

2022-02-07 Thread Nando Merino
I follow this steps: https://developers.google.com/tag-platform/tag-manager/server-side/custom-domain El sáb, 5 feb 2022 a las 20:18, 'babdelrahman' via Google App Engine (< google-appengine@googlegroups.com>) escribió: > You could try re-configuring (remapping) the custom domain. > If that

[google-appengine] Re: App Engine Standard - app:invalid port 8080

2022-02-06 Thread Jason Collins
That's a pretty misleading message; don't worry about it. If you bind to $PORT, you'll get an nginx instance running in front of your application. If you don't want the nginx instance, you can bind directly to port 8080. On Sunday, 6 February 2022 at 08:41:31 UTC-8 zhenyang@gmail.com

[google-appengine] App Engine Standard - app:invalid port 8080

2022-02-06 Thread Chong Zhen Yang
Hello, I'm trying to deploy my react app to app engine using port 8080. The logs payloads as below: 1. textPayload: "[start] 2022/02/06 04:52:28.768200 Waiting for network connection open. Subject:"app/invalid" Address:127.0.0.1:8080" 2. textPayload: "[start] 2022/02/06 04:52:28.768200

[google-appengine] Re: Server Side Custom domain configuration

2022-02-05 Thread 'babdelrahman' via Google App Engine
You could try re-configuring (remapping) the custom domain. If that doesn't work, kindly provide us with more details on the issue and which documents did you follow. On Friday, February 4, 2022 at 8:11:42 AM UTC-5 fernand...@gmail.com wrote: > I have followed the steps of the Google

[google-appengine] Re: comienzo con el diseño e implementación de course builder

2022-02-04 Thread 'barrado' via Google App Engine
Hi, Notice that Google Groups forums are meant only to be discussed on the English language. On the other hand I believe you can be more information about your questions in the Cloud Builder forum of Google Groups. On Tuesday, February 1,

Re: [google-appengine] Private Key for GAE Google Managed SSL certificate

2022-02-02 Thread 'Horace (Cloud Platform Support)' via Google App Engine
Hello Currently it doesn’t seem possible to download the private key after it is created currently [1, 2]. Google Managed SSL certificate private keys are locked and can only be used within GCP and cannot be exported to be used by external services. There is however already a feature

Re: [google-appengine] Private Key for GAE Google Managed SSL certificate

2022-02-02 Thread Matheus Modder MMmods
I don't understand this kind of thing? did you get the email wrong? Where did you find my contact email? Em ter, 1 de fev de 2022 19:19, Rob Wegbrands escreveu: > Hello, > > I've enabled a google managed SSL certificate for my custom domain linked > to GAE. I'm able to download / retrieve the

[google-appengine] Private Key for GAE Google Managed SSL certificate

2022-02-01 Thread Rob Wegbrands
Hello, I've enabled a google managed SSL certificate for my custom domain linked to GAE. I'm able to download / retrieve the .crt file from the browser, Is there a way for me to download the corresponding private key (.key) file? If yes, how can I achieve this? Rob -- You received this

Re: [google-appengine] Re: App engine unable to access sql cloud engine(mysql)

2022-02-01 Thread Sangram Sinha
Hi, Thank you to both of you, I have opened a case as suggested. Will let you guys know once it is fixed Thanks for your help On Monday, January 31, 2022 at 11:32:41 PM UTC+5:30 rwabukumba wrote: > Hi, > > I second Sivaranjani's opinion that opening a support case, with details > of your

[google-appengine] Re: Setting regions when creating a scheduled query in BQ

2022-02-01 Thread 'Olu' via Google App Engine
Hello Paul, There are a number of reasons why this error may be obtained. It could be about your configurations, at the same time, there was a report of the error being related to a Console UI issue. So, the first step is to ensure that your configurations are right. I will like to point you

[google-appengine] comienzo con el diseño e implementación de course builder

2022-02-01 Thread Manuel Fernando Fonseca Avila
buen día a todos. Me gustaría si es posible que alguien me ayude con el diseño e implementación de un curso masivo abierto en línea con course builder. en relación a lo que es descarga de archivos y como subir esta información en la web. Estaría muy agradecido con la ayuda Pdta. Si saben de

Re: [google-appengine] Re: App engine unable to access sql cloud engine(mysql)

2022-01-31 Thread 'rwabukumba' via Google App Engine
Hi, I second Sivaranjani's opinion that opening a support case, with details of your set up, is the best next course of action. Please do confirm from which service (e.g App Engine Standard or Flex) you are trying to connect to the Cloud SQL instance. In the meantime, I recommend consulting

[google-appengine] Re: App Engine Access After Leaving Google Workspace

2022-01-31 Thread Steven Prosser
Not receiving any response, I contacted Google via the GAE Admin support process. Here is the conclusion of the Agent helping me (after he spent quite some time investigating): "Thank you so much for waiting, I was unable to find the details related to Google App Engine console, So I can

Re: [google-appengine] Re: App engine unable to access sql cloud engine(mysql)

2022-01-31 Thread 'sivaranja...@google.com' via Google App Engine
Hi Sinhasangram I am sorry to hear that. Could you please create a case with all the information including your project information here[1] and one of our team members will look into the issue for you. Thanks, Sivaranjani [1]https://cloud.google.com/support/docs/manage-cases On Monday,

[google-appengine] Re: Error -27?

2022-01-31 Thread Joshua Smith
Seems to have cleared itself up. > On Jan 31, 2022, at 10:03 AM, Joshua Smith wrote: > > Anyone else getting these? I'm getting them hitting /admin sorts of pages in > a Python27 runtime app. There's nothing in my logs... > > -- You received this message because you are subscribed to the

Re: [google-appengine] Re: App engine unable to access sql cloud engine(mysql)

2022-01-31 Thread Sangram Sinha
Hi, The link you provided gave information about how to run it locally. But I am trying to run in from gcloud. I have actually followed all the steps mentioned in the link. I have enabled all the APIs and given access to my service account and user account. But still it fails. I don't know why it

<    1   2   3   4   5   6   7   8   9   10   >