Reputation: 21
I keep seeing these errors in the stackdriver logs for a google appengine app written in go:
2017/11/05 23:30:38 internal.flushLog: Flush RPC: service bridge returned HTTP 400 ("App Engine APIs over the Service Bridge are disabled.\nIf they are required, enable them by setting the following to your app.yaml:\n\nbeta_settings:\n enable_app_engine_apis: true\n")
Does anyone know the proper way to resolve this? I looked in the docs and the enable_app_engine_apis
beta setting has been deprecated. The app does work but this continually clutters the logs.
Upvotes: 2
Views: 560
Reputation: 21
I had the same problem and I asked Google Cloud Support. They replied that there is no way to avoid outputting it to the error log, as it requires a fix on their end. They raised a github issue. Here is the link:
https://github.com/GoogleCloudPlatform/appengine-sidecars-docker/issues/82
Upvotes: 2