Home > Enterprise >  app_engine_apis: true not appearing in deployed version's config
app_engine_apis: true not appearing in deployed version's config

Time:01-16

i'm trying to deploy a go API on the 116 runtime that requires task queues. Upon accessing the endpoint that utilizes task queues, the log tells me: please add app_engine_apis: true to your app.yaml to enable. I've added it in my app.yml (see below) but it does not appear in the final configs for the version in the console. Any ideas?

edit: for clarity, in this screen I attempted toggling to the go115 runtime, but the same issue exists for both runtimes

enter image description here enter image description here

CodePudding user response:

Given using the GAE services in 2nd Gen runtimes is still in Preview, visibility in the console probably just hasn't been implemented. You can check if the setting has been applied using the Admin API, where "appEngineApis": true setting should be showing.

It also shows if you use gcloud beta app versions describe (make sure to include beta).

  •  Tags:  
  • Related