diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-01-28 20:43:38 -0500 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-01-28 20:43:38 -0500 |
commit | 3fcd3b41bde4172dd31b28fc88c4b1735c80d56b (patch) | |
tree | 2727c05f47857b30650e0e384dd45d21011e9f0e | |
parent | 002c07684d97eae94881f7e45f07206ae4c6827a (diff) |
combox/events.py: In ComboxDirMonitor class, housekeep() is called from the __init__ method.
-rw-r--r-- | combox/events.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/combox/events.py b/combox/events.py index ddd4a2c..f69c8d9 100644 --- a/combox/events.py +++ b/combox/events.py @@ -43,6 +43,8 @@ class ComboxDirMonitor(LoggingEventHandler): self.config = config self.silo = ComboxSilo(self.config) + self.housekeep() + def housekeep(self): """Recursively traverses combox directory, discovers changes and updates silo and node directories. |