| OLD | NEW |
| (Empty) | |
| 1 # Copyright (c) 2009-2010 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 cron: |
| 6 |
| 7 - description: initial task queue work |
| 8 url: /start_work |
| 9 schedule: every 1 minutes |
| 10 |
| 11 - description: tally load every minute |
| 12 url: /tally_running |
| 13 schedule: every 1 minutes |
| 14 |
| 15 - description: accumulate total every hour |
| 16 url: /tally_merge?src=60&dst=1800 |
| 17 schedule: every 1 hours |
| 18 |
| 19 - description: accumulate total every day |
| 20 url: /tally_merge?src=1800&dst=86400 |
| 21 schedule: every day 00:00 |
| OLD | NEW |