How about running a job every minute (synchronized) and check the time?
min = datetime.datetime.now().minute
if min == 30:
# do whatever
Or if you don't trust the App Engine Cron runs every minute,
if min >= 30:
if !checkLog(year, month, day, hour):
saveLog(year, month, day, hour)
# do whatever
Shinichi
On Thu, Mar 25, 2010 at 17:38, prgmratlarge <[email protected]> wrote:
> How can I run a cron job at the 30 minute point on every hour. I don't
> want it to go every half hour -- i want it to go on every half hour of
> the hour. So it should specifically run at:
>
> 1:30,2:30,3:30,etc...
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.