()
| 805 | } |
| 806 | |
| 807 | fn now_secs() -> u64 { |
| 808 | SystemTime::now() |
| 809 | .duration_since(UNIX_EPOCH) |
| 810 | .unwrap_or_default() |
| 811 | .as_secs() |
| 812 | } |
| 813 | |
| 814 | /// Backstop scheduler (design D5): a single daemon timer covering projects whose |
| 815 | /// watcher heartbeat is stale/absent, plus daily branch-store GC. |
no outgoing calls