This commit is contained in:
Joey Hess 2016-12-13 10:49:39 -04:00
parent d35d87d8d8
commit e08761288d
No known key found for this signature in database
GPG key ID: C910D9222512E3C7

View file

@ -13,4 +13,10 @@ it is:
That is supposed to unset c, with the CurrentlySet False, but instead c
remains set somehow.
Aha, the use of `addMetaData'` causes the bug. That reuses the same
timestamp, and indeed the same timestamp is used for all the batch
changes. With the same timestamp for the log line that sets c as the line
that removes it, it's indeterminite which line will be acted on first, and
so the removal can be processed before the addition, leaving c "stuck".
"""]]