I’ve setup a GAE cronjob. My cron.yaml looks like this
cron:
- description: checkForPush
url: /cron/
schedule: every 1 minutes
Inside the cron folder i’ve got a cron.py file with an URL-Fetch.
If i deploy the project and the cronjob runs it fails.
Any ideas?
Thanks a lot.
Your app.yaml declaration is for the url ‘/cron’, but your cron.yaml is requesting ‘/cron/’. You need to change them so they both use the same path.