Hi,

I am running an App Engine Standard environment and trying to se cron 
scheduled tasks. I've created the cron.xml (alongside the web.xml) and went 
by the guide in the following 
link: https://cloud.google.com/appengine/docs/standard/java/config/cron
However, I don't see the cron start (both in the logs and in the console 
App Engine -> Task Queues -> Cron Jobs)

Can u please advise what might I be doing wrong?

cron.xml:

<?xml version="1.0" encoding="UTF-8"?>
<cronentries>
    <cron>
        <url>/tasks/repsai/retrieve_tickets</url>
        <target>beta</target>
        <description>daily summary job</description>
        <schedule>every 2 minutes</schedule>
    </cron>
    <cron>
        <url>/recache</url>
        <description>Repopulate the cache every 2 minutes</description>
        <schedule>every 2 minutes</schedule>
    </cron>
</cronentries>


Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/601f844e-66ab-4316-a1d7-cfa4dd82caaa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to