This might be a dumb question, but, i just can't find cron jobs panel, I've got an app in java and I need to refresh the data every day, so I create this cron.xml inside WEB-INF:
<?xml version="1.0" encoding="UTF-8"?>
<cronentries>
<cron>
<url>/refreshdata</url>
<description>Daily data refresh cron task </description>
<schedule>every day 05:00</schedule>
</cron>
</cronentries>
I deployed it, but it doesnt work and I cant find the "cron job panel" in console to monitor it or even check if GAE recognizes it...
Documentation says " (You can verify the Cron job you just deployed by clicking Cron Jobs in the left nav pane.) https://i.stack.imgur.com/1niVt.png "
but it doesn't exist anymore, gae's console UI changed, where it is now? I tried in logs without success
it is something wrong with my .xml?
Any help would be apreciated, thanks.