]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
debugging
authorDaira Hopwood <daira@jacaranda.org>
Wed, 15 Apr 2015 14:30:00 +0000 (15:30 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Wed, 15 Apr 2015 14:30:00 +0000 (15:30 +0100)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
src/allmydata/test/test_drop_upload.py
src/allmydata/windows/inotify.py

index 724faf270c20604a34e5e78661c426d37e4c4c1b..e86c2613eef0fd2a4b1e229b8c4f06f34e5b2d54 100644 (file)
@@ -73,6 +73,7 @@ class DropUploadTestMixin(GridTestMixin, ShouldFailMixin, ReallyEqualMixin, NonA
         def _cleanup(res):
             d = defer.succeed(None)
             if self.uploader is not None:
+                print "XXX"
                 d.addCallback(lambda ign: self.uploader.finish(for_tests=True))
             d.addCallback(lambda ign: res)
             return d
index 1a719f9afd9a2fb51fdd96e0ef97ad2c0a270cc1..fc2e1d481e0dd1de525c7f9a527ab25d06cb8b1d 100644 (file)
@@ -111,6 +111,7 @@ class FileNotifyInformation(object):
 
     def read_changes(self, hDirectory, recursive, filter):
         bytes_returned = DWORD(0)
+        print "here"
         r = ReadDirectoryChangesW(hDirectory,
                                   self.buffer,
                                   self.size,
@@ -245,6 +246,7 @@ class INotify(PollMixin):
                 self._state = STARTED
                 fni.read_changes(self._hDirectory, self._recursive, self._filter)
                 for info in fni:
+                    print info
                     if self._state == STOPPING:
                         hDirectory = self._hDirectory
                         self._callbacks = None