summaryrefslogtreecommitdiff
path: root/doc/design/assistant/inotify.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-03-20 14:27:37 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-03-20 14:27:37 -0400
commit3b9e5dc814956942e6e2f722fbd62f41ed7a5a01 (patch)
tree8cce69e357571a4f5e7c81cb4f24c56e863bae2e /doc/design/assistant/inotify.mdwn
parent7eb37d0ef24d2db1e6080775e90b89e778e78fb9 (diff)
updates
Diffstat (limited to 'doc/design/assistant/inotify.mdwn')
-rw-r--r--doc/design/assistant/inotify.mdwn9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/design/assistant/inotify.mdwn b/doc/design/assistant/inotify.mdwn
index 3caaaa0e8..11220c2ee 100644
--- a/doc/design/assistant/inotify.mdwn
+++ b/doc/design/assistant/inotify.mdwn
@@ -6,14 +6,11 @@ available!
## known bugs
-* When you `git annex unlock` a file, it will immediately be re-locked.
- See [[bugs/watcher_commits_unlocked_files]].
-
* Kqueue has to open every directory it watches, so too many directories
will run it out of the max number of open files (typically 1024), and fail.
I may need to fork off multiple watcher processes to handle this.
See [[bug|bugs/Issue_on_OSX_with_some_system_limits]]. (Does not affect
- OSX any longer).
+ OSX any longer, only other BSDs).
## todo
@@ -28,7 +25,7 @@ available!
* There needs to be a way for a new version of git-annex, when installed,
to restart any running watch or assistant daemons. Or for the daemons
to somehow detect it's been upgraded and restart themselves. Needed
- to allow for imcompatable changes and, I suppose, for security upgrades..
+ to allow for incompatable changes and, I suppose, for security upgrades..
## beyond Linux
@@ -203,3 +200,5 @@ Many races need to be dealt with by this code. Here are some of them.
- If a file is checked into git as a normal file and gets modified
(or merged, etc), it will be converted into an annexed file.
See [[blog/day_7__bugfixes]]. **done**; we always check ls-files now
+- When you `git annex unlock` a file, it will immediately be re-locked.
+ See [[bugs/watcher_commits_unlocked_files]]. Seems fixed now?