git-annex/doc/devblog/day_35__anacron_and_bugfixing.mdwn

16 lines
891 B
Text
Raw Normal View History

2013-10-15 20:16:31 +00:00
While I said I was done with fsck scheduling yesterday, I ended up adding
one more feature to it today: Full anacron style scheduling. So a fsck can
be scheduled to run once per week, or month, or year, and it'll run the
fsck the next time it's available after that much time has passed. The nice
thing about this is I didn't have to change Cronner *at all* to add this,
2017-02-11 09:38:49 +00:00
just improved the Recurrence data type and the code that calculates when
2013-10-15 20:16:31 +00:00
to run events.
Rest of the day I've been catching up on some bug reports. The main bug I
fixed caused git-annex on Android to hang when adding files. This turns out
to be because it's using a new (unreleased) version of git, and
2017-02-11 09:38:49 +00:00
`git check-attr -z` output format has changed in an incompatible way.
2013-10-15 20:16:31 +00:00
I am currently 70 messages behind, which includes some ugly looking bug
reports, so I will probably continue with this over the next couple days.