Hi
Looks like the problem was with the error_handlers directive (new in
1.3.6)
I had used
error_handlers:
- file: static/default_error.html
Which also overlapped with a static file handler I had configured
- url: /static
static_dir: static
expiration: "30d"
Moving the static default handler to
error_handlers:
- file: default_error.html
Made the problem go away.
Ideally the deployment failure error should at least say "mis-
configured app.yaml" or something similar.
Regards
Tim