Python Google App Engine Cron Job Not Working
I am creating cron job and it's work on the local dev sever (http://localhost:8000/cron). I uploaded application to google app engine, but I see 'You have not created any scheduled
Solution 1:
In some cases uploading the app alone doesn't update the cron jobs, in such case you need to update the cron jobs specifically using appcfg.py update_cron
, see https://cloud.google.com/appengine/docs/python/config/cron#Python_app_yaml_Uploading_cron_jobs
Post a Comment for "Python Google App Engine Cron Job Not Working"