summaryrefslogtreecommitdiffstats
path: root/combox/events.py
diff options
context:
space:
mode:
Diffstat (limited to 'combox/events.py')
-rw-r--r--combox/events.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/combox/events.py b/combox/events.py
index 71431c6..973a79d 100644
--- a/combox/events.py
+++ b/combox/events.py
@@ -202,6 +202,17 @@ class NodeDirMonitor(LoggingEventHandler):
self.silo = ComboxSilo(self.config)
+ def shardp(self, path):
+ """Returns True if `path' is a shard
+
+ Shards end with `.shardN' where `N' is a natural number.
+ """
+ if path[:-1].endswith('.shard'):
+ return True
+ else:
+ return False
+
+
def housekeep(self):
"""Recursively traverses node directory, discovers changes and updates silo and combox directory.