I can't get my cron job to appear on Google App Engine under Task Queues > Cron Jobs. I've tried reuploading my app engine and I've followed the two tutorials which use appcfg.sh(this gives an error) and gcloud app deply to upload, found here - https://cloud.google.com/appengine/docs/standard/java/config/cron?hl=en_US&_ga=2.205188432.-1541482127.1505330507, https://cloud.google.com/appengine/docs/flexible/go/scheduling-jobs-with-cron-yaml
When I check the upload logs, it seems like the cron.xml file does upload.
Here's my cron.xml file, placed under webapp/WEB-INF:
<?xml version="1.0" encoding="UTF-8"?>
<cronentries>
<cron>
<url>/hello</url>
<description>daily update</description>
<schedule>every day 03:00</schedule>
</cron>
</cronentries>
I have tried adding a 'target' and tried adding my latest version in there but that doesn't seem to work either