Is there a way to disable the health check when starting the development server for local management of virtual machines ( gcloud preview app run app.yaml )?
This health check causes me headaches during debugging.
I tried adding health_check settings to app.yaml as shown in https://cloud.google.com/appengine/docs/go/managed-vms/ :
health_check: enable_health_check: False
and tried different values โโfor
check_interval: 5 timeout: 4 unhealthy_threshold: 2 healthy_threshold: 2 restart_threshold: 60
but none of these changes worked. enable_health_check: False seems to be ignored, and so most other settings (some of them cause an error) see https://code.google.com/p/googleappengine/issues/detail?id=11491
google-app-engine
Gรผnter zรถchbauer
source share