From a1cdbe03cec3c658ebcfbbdc987a9419c8662a64 Mon Sep 17 00:00:00 2001 From: Siddharth Ravikumar Date: Thu, 27 Aug 2015 00:09:37 -0400 Subject: fixed dropbox specific issue in NodeDirMonitor.housekeep method. modified: combox/events.py --- combox/events.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/combox/events.py b/combox/events.py index d89acb6..e0b558e 100644 --- a/combox/events.py +++ b/combox/events.py @@ -263,7 +263,8 @@ class NodeDirMonitor(LoggingEventHandler): for f in files: shard = path.join(root, f) - if not self.shardp(shard): + if (not self.shardp(shard) and + '.dropbox.cache' in shard): continue file_cb_path = cb_path(shard, self.config) -- cgit v1.2.3