소스 검색

Don't open a RW transaction if there is one already.

Stefano Cossu 7 년 전
부모
커밋
48c674b777
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      lakesuperior/store_layouts/ldp_rs/lmdb_store.py

+ 5 - 3
lakesuperior/store_layouts/ldp_rs/lmdb_store.py

@@ -64,7 +64,9 @@ class TxnManager(ContextDecorator):
         self.write = write
 
     def __enter__(self):
-        self.store.begin(write=self.write)
+        # Only open a R/W transaction if one is not already open.
+        if not self.write or not self.store.is_txn_rw:
+            self.store.begin(write=self.write)
 
     def __exit__(self, exc_type, exc_value, traceback):
         if exc_type:
@@ -666,7 +668,7 @@ class LmdbStore(Store):
         if self.is_txn_open:
             self.data_txn.commit()
             self.idx_txn.commit()
-        self.data_txn = self.idx_txn = None
+        self.data_txn = self.idx_txn = self.is_txn_rw = None
 
 
     def rollback(self):
@@ -676,7 +678,7 @@ class LmdbStore(Store):
         if self.is_txn_open:
             self.data_txn.abort()
             self.idx_txn.abort()
-        self.data_txn = self.idx_txn = None
+        self.data_txn = self.idx_txn = self.is_txn_rw = None
 
 
     def rebase(self, n, start=1):