summaryrefslogtreecommitdiff
path: root/test/suite/test_txn05.py
diff options
context:
space:
mode:
authorSusan LoVerso <sue@wiredtiger.com>2013-12-09 10:44:21 -0500
committerSusan LoVerso <sue@wiredtiger.com>2013-12-09 10:44:21 -0500
commitc0b4d779d67602f606ef795918a40a4f8eab8889 (patch)
tree9c3794ad7e787ad0f035d4a851c5308607d31903 /test/suite/test_txn05.py
parenta751d36a0da91ce541e50e1773f9f0a558bb5902 (diff)
downloadmongo-c0b4d779d67602f606ef795918a40a4f8eab8889.tar.gz
Turn off archiving on primary connection. #710
Diffstat (limited to 'test/suite/test_txn05.py')
-rw-r--r--test/suite/test_txn05.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/suite/test_txn05.py b/test/suite/test_txn05.py
index a4b8dc3c3d6..aff22067ef9 100644
--- a/test/suite/test_txn05.py
+++ b/test/suite/test_txn05.py
@@ -68,8 +68,9 @@ class test_txn05(wttest.WiredTigerTestCase, suite_subprocess):
self.txn_sync = self.sync_list[
self.scenario_number % len(self.sync_list)]
self.backup_dir = os.path.join(self.home, "WT_BACKUP")
- conn_params = 'create,log=(enabled,file_max=%s),' % self.logmax + \
- 'error_prefix="%s: ",' % self.shortid() + \
+ conn_params = \
+ 'log=(archive=false,enabled,file_max=%s),' % self.logmax + \
+ 'create,error_prefix="%s: ",' % self.shortid() + \
'transaction_sync="%s",' % self.txn_sync
# print "Creating conn at '%s' with config '%s'" % (dir, conn_params)
conn = wiredtiger_open(dir, conn_params)