From 90069a32c289f32bb2cd00463da1a3d9a580c187 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 25 May 2013 16:08:29 -0400 Subject: [PATCH] blog for the days --- .../assistant/blog/day_273-274__fun.mdwn | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 doc/design/assistant/blog/day_273-274__fun.mdwn diff --git a/doc/design/assistant/blog/day_273-274__fun.mdwn b/doc/design/assistant/blog/day_273-274__fun.mdwn new file mode 100644 index 0000000000..2fa12003a5 --- /dev/null +++ b/doc/design/assistant/blog/day_273-274__fun.mdwn @@ -0,0 +1,19 @@ +Got caught up on some bug reports yesterday. The main one was odd behavior +of the assistant when the repository was in manual mode. A recent change to +the preferred content expression caused it. But the expression was not +broken. The problem was in the parser, which got the parentheses wrong +in this case. I had to mostly rewrite the parser, unfortunately. I've tested +the new one fairly extensively -- on the other hand this bug lurked in the +old parser for several years (this same code is used for matching files +with command-line parameters). + +Just as I finished with that, I noticed another bug. Turns out git-cat-file +doesn't reload the index after it's started. So last week's changes to make +git-annex check the state of files in the index won't work when using the +assistant. Luckily there was an easy workaround for this. + +Today I finished up some robustness fixes, and added to the test suite +checks for preferred content expressions, manual mode, etc. + +I've started a stress test, syncing 2 repositories over XMPP, with the fuzz +tester running in each to create lots of changes to keep in sync.