Status Update
Comments
gh...@google.com <gh...@google.com>
gh...@google.com <gh...@google.com> #2
Hello
Thank you for reaching out to us!
This issue seems to be outside of the scope of Issue Tracker. This Issue Tracker is a forum for end users to report bugs and request features on Google Cloud products. Please go through
I recommend you to
I'm going to close this thread which will no longer be monitored. In case you want to report a new issue, please do not hesitate to create a new Issue Tracker describing your issue.
Thank you
[Deleted User] <[Deleted User]> #3
I tried to release a minimal service with these 3 files but it does not work.
Command: gcloud app deploy --version=62fc97ef8 --verbosity=debug
Output:
Took more than 30 minutes and failed
Updating service [test] (this may take several minutes)...
[4] Timed out waiting for the app infrastructure to become healthy.
app.yaml
runtime: nodejs
service: test
env: flex
automatic_scaling:
min_num_instances: 1
max_num_instances: 1
package.json
{
"scripts": {
"start": "node index.js"
},
"dependencies": {
"express": "latest"
},
"main": "index.js"
}
index.js
const express = require("express");
const app = express();
app.get("/", (req, res) => res.send({ result: "OK" }));
app.listen(process.env.PORT);
gh...@google.com <gh...@google.com> #4
Hi,
Thanks for reaching out to cloud support!
I have reproduced the similar issue at my end and it is executing successfully without any errors. As per the
This issue seems to be outside of the scope of Issue Tracker. The Issue Tracker is a forum for end users to report product related issue and request features.I suggest you go through
I'm going to close this thread which will no longer be monitored. In case you want to report a new issue, please do not hesitate to create a new Issue Tracker thread describing your situation.
Description
Updating service [test] (this may take several minutes)...⠶DEBUG: Operation [apps/***/operations/62c78b32-3d48-41d9-b163-9ebd177e4fd1] not complete. Waiting to retry.
I receive this and then
[4] Timed out waiting for the app infrastructure to become healthy.
I tried with minimal nodejs code in 2 different regions, still got the same errors in about 2 days.