Hi Scott, This is because when using the remote_api_shell, your local system time is used, while App Engine uses UTC. You need to set an ETA on any tasks you insert - for example:
deferred.defer(somefunc, _eta=datetime.datetime.now()-datetime.timedelta(hours=1)) -Nick Johnson On Thu, Oct 22, 2009 at 6:32 AM, Scott Ellis <[email protected]> wrote: > Hi All, > I just queued up a bunch of tasks using the remote API and it's new > taskqueue feature - and all the tasks showed up in the admin console with an > ETA of just under 60 mins... > > In case it's relevant, i'm in Australia (AEST timezone). > > Just wondering if there's any good reason for this. If not I'll file a bug > report. > > Scott > > > > -- Nick Johnson, Developer Programs Engineer, App Engine Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration Number: 368047 --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
