Assigned
Status Update
Comments
su...@google.com <su...@google.com>
ad...@kaurkuut.com <ad...@kaurkuut.com> #3
Hi, this error only affects Cloud SDK version 186. It was previously reported in Issue 72407295 and a fix for it should be released in Cloud SDK version 187.
In the mean time, you can downgrade to Cloud SDK version 185 as a workaround by running the following command:
gcloud components update --version 185.0.0
In the mean time, you can downgrade to Cloud SDK version 185 as a workaround by running the following command:
gcloud components update --version 185.0.0
su...@google.com <su...@google.com>
ma...@eliasnaur.com <ma...@eliasnaur.com> #4
What's the status of this? This issue is blocking us upgrading past the go115 runtime.
da...@gmail.com <da...@gmail.com> #5
I think that this may be fixed in 469.0.0 (and maybe also 468.0.0). Note that there appear to be new bugs, though, e.g.
ka...@gmail.com <ka...@gmail.com> #6
Comment has been deleted.
Description
The Problem
When running
google-cloud-sdk/platform/google_appengine/google/appengine/tools/devappserver2
with app runtime inapp.yaml
defined asgo116
/go118
/go119
/go120
any API call will fail.The
google.golang.org/appengine/v2
package will default the API host toappengine.googleapis.internal:10001
which won't work on a local computer.When running the app locally with
devappserver2
the following error appears:Potential Solution
It seems that the host can be overridden with the
API_HOST
env variable. Thehttp_runtime.py
file ofdevappserver2
contains the following constant:When I edit it to add the problematic Go versions then the API errors go away.