Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/olpc/datastore/backingstore.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/olpc/datastore/backingstore.py')
-rw-r--r--src/olpc/datastore/backingstore.py22
1 files changed, 1 insertions, 21 deletions
diff --git a/src/olpc/datastore/backingstore.py b/src/olpc/datastore/backingstore.py
index dc6b2ef..b1ecbef 100644
--- a/src/olpc/datastore/backingstore.py
+++ b/src/olpc/datastore/backingstore.py
@@ -305,27 +305,7 @@ class FileBackingStore(BackingStore):
# This will ensure the fulltext and so on are all assigned
im.bind_to(self)
-
- try:
- im.connect(index_name)
- except Exception, e:
- # TODO: Try to recover in a smarter way than deleting the base
- # dir and reinitializing the index.
-
- logging.error('Error while trying to load mount point %s: %s. ' \
- 'Will try to renitialize and load again.' % (self.base, e))
-
- # Delete the base dir and its contents
- for root, dirs, files in os.walk(self.base, topdown=False):
- for name in files:
- os.remove(os.path.join(root, name))
- for name in dirs:
- os.rmdir(os.path.join(root, name))
- os.rmdir(root)
-
- self.initialize()
- self.load()
- return
+ im.connect(index_name)
self.indexmanager = im