浏览代码

Catch exceptions for committing and aborting transactions.

Stefano Cossu 7 年之前
父节点
当前提交
f784abd392
共有 1 个文件被更改,包括 9 次插入4 次删除
  1. 9 4
      lakesuperior/store/ldp_rs/lmdb_store.py

+ 9 - 4
lakesuperior/store/ldp_rs/lmdb_store.py

@@ -712,11 +712,13 @@ class LmdbStore(Store):
         logger.debug('Committing transaction.')
         try:
             self.data_txn.commit()
+        except (AttributeError, lmdb.Error):
+            pass
+        try:
             self.idx_txn.commit()
-        except lmdb.Error:
+        except (AttributeError, lmdb.Error):
             pass
-
-        self.data_txn = self.idx_txn = self.is_txn_rw = None
+        self.is_txn_rw = None
 
 
     def rollback(self):
@@ -726,8 +728,11 @@ class LmdbStore(Store):
         logger.debug('Rolling back transaction.')
         try:
             self.data_txn.abort()
+        except (AttributeError, lmdb.Error):
+            pass
+        try:
             self.idx_txn.abort()
-        except lmdb.Error:
+        except (AttributeError, lmdb.Error):
             pass
         self.is_txn_rw = None