summaryrefslogtreecommitdiffstats
path: root/combox/events.py
diff options
context:
space:
mode:
authorSiddharth Ravikumar <sravik@bgsu.edu>2015-04-08 17:18:33 -0400
committerSiddharth Ravikumar <sravik@bgsu.edu>2015-04-08 17:18:33 -0400
commitf15ce63ba11ad101349ee51a0baa4109400d7329 (patch)
tree7f94507471009cf0a042ba575870468c753e493f /combox/events.py
parentf64e56864dcd316ab1e74b2f5b2ec9462cd1e368 (diff)
After a file which was created a in a remote computer is reconstructed in this computer, its info is removed from the 'file_created' dictionary in the silo.
modified: combox/events.py modified: tests/events_test.py
Diffstat (limited to 'combox/events.py')
-rw-r--r--combox/events.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/combox/events.py b/combox/events.py
index efdbc53..609ed8e 100644
--- a/combox/events.py
+++ b/combox/events.py
@@ -311,6 +311,7 @@ class NodeDirMonitor(LoggingEventHandler):
if num == self.num_nodes:
os.mkdir(file_cb_path)
+ self.silo.node_rem('file_created', file_cb_path)
elif (not event.is_directory) and (not path.exists(file_cb_path)):
# shard created.
@@ -324,6 +325,7 @@ class NodeDirMonitor(LoggingEventHandler):
decrypt_and_glue(file_cb_path, self.config)
# update db.
self.silo.update(file_cb_path)
+ self.silo.node_rem('file_created', file_cb_path)
def on_deleted(self, event):