views:

22

answers:

1

I registered a cron job in the google appengine. It runs fine. Since I deleted the whole content of the app, I want this job to not run anymore. I don't know how to do it.

+1  A: 

In Python, to delete all cron jobs, change the cron.yaml file to just contain:


cron:

In Java, to delete all cron jobs, change the cron.xml file to just contain:


<?xml version="1.0" encoding="UTF-8"?> 
<cronentries/>

tou