From: Daira Hopwood <daira@jacaranda.org>
Date: Wed, 6 May 2015 14:22:04 +0000 (+0100)
Subject: autoAdd is no longer used.
X-Git-Url: https://git.rkrishnan.org/specifications/components/reliability?a=commitdiff_plain;h=ac23a71748788fa031b322589d536fb59276b1db;p=tahoe-lafs%2Ftahoe-lafs.git

autoAdd is no longer used.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
---

diff --git a/src/allmydata/windows/inotify.py b/src/allmydata/windows/inotify.py
index 4255b6fd..3a0f7ba6 100644
--- a/src/allmydata/windows/inotify.py
+++ b/src/allmydata/windows/inotify.py
@@ -299,7 +299,7 @@ class INotify(PollMixin):
         precondition(self._filter is None, "only one watch is supported")
         precondition(isinstance(autoAdd, bool), autoAdd=autoAdd)
         precondition(isinstance(recursive, bool), recursive=recursive)
-        precondition(autoAdd == recursive, "need autoAdd and recursive to be the same", autoAdd=autoAdd, recursive=recursive)
+        precondition(not autoAdd, "autoAdd not supported")
 
         self._path = path
         path_u = path.path