I recently signed up and started playing with GAE for python. I was able to get their standard/flask/hello_world project. But, when I tried to upload a simple cron job following the instructions at https://cloud.google.com/appengine/docs/standard/python/config/cron, I get an "Internal Server Error".
My cron.yaml
cron:
- description: test cron
url: /
schedule: every 24 hours
The error I see
Do you want to continue (Y/n)? y
Updating config [cron]...failed.
ERROR: (gcloud.app.deploy) Server responded with code [500]:
Internal Server Error.
Server Error (500)
A server error has occurred.
Have I done something wrong here or is it possible that I am not eligible to add cron jobs as a free user?
/as the url for your cron job seems like a terrible idea! Change that to/my-cron-jobor something similar. - gaefan