Is there a way to disable health checking when running the development server for manages VMs locally (gcloud preview app run app.yaml
)?
This health checking causes me headaches during debugging.
I tried to add health_check
settings to app.yaml
like 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 did work.
enable_health_check: False
seems to be ignored and so are most of the other settings (some cause an error) see https://code.google.com/p/googleappengine/issues/detail?id=11491
From a comment from the issue you provided:
So just use for now:
or change one of the following settings