summaryrefslogtreecommitdiff
path: root/src/mailman/database/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/database/base.py')
-rw-r--r--src/mailman/database/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/database/base.py b/src/mailman/database/base.py
index dda3665af..f57228029 100644
--- a/src/mailman/database/base.py
+++ b/src/mailman/database/base.py
@@ -103,7 +103,7 @@ class SABaseDatabase:
# engines, and yes, we could have chmod'd the file after the fact, but
# half dozen and all...
self.url = url
- self.engine = create_engine(url)
+ self.engine = create_engine(url, isolation_level='READ UNCOMMITTED')
session = sessionmaker(bind=self.engine)
self.store = session()
self.store.commit()