google app engine - Do daily quota replenishment and cron task use the same timezone? -


I have set daily daily work to be told about quota replenishment, which seems to be that it is UTC- 7 (or GMT-7) is equal to My local time is GMT + 4 while checking the log (GMT + 4 is selected there), I think my work runs at midnight:

  2014-04-22 04: 00: 00.278 / admin / reset quota 200 121ms 0kb AppEngine -Google; (+ Http: //code.google.com/appengine) module = default version = 1   

but now when I quote the Local Details of GAE Console (local time 5:26 p.m.) I see the details page, it says that the quota will be reset within the next 18 hours, i.e. at local time at 11 p.m.

Does this mean that cron jobs use UTC time, when quota replaces in UTC-7? Cron.yaml looks like how can I tell UTC-7 here? Is this US / Pacific ?

Yes Cron work uses UTC time by default, but you can specify time zone And US / Pacific are valid:

  - Description: Daily work URL: / cron / daily schedule: every day 00:00 time zones: US / Pacific   

If you try and use the timezone that is not recognized, then when you update_cron places an error: Error parsing the yaml file: '/ coron.yaml' for the timezone 'US / does-not' for the timezone 'US / No-present' Unable to assign value '-exist', line 13, column 13

Comments

Popular posts from this blog

Pass DB Connection parameters to a Kettle a.k.a PDI table Input step dynamically from Excel -

multithreading - PhantomJS-Node in a for Loop -

c++ - MATLAB .m file to .mex file using Matlab Compiler -