diff options
Diffstat (limited to 'jstests/noPassthrough/transaction_reaper.js')
-rw-r--r-- | jstests/noPassthrough/transaction_reaper.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/jstests/noPassthrough/transaction_reaper.js b/jstests/noPassthrough/transaction_reaper.js index b777b80d6b3..5146de52234 100644 --- a/jstests/noPassthrough/transaction_reaper.js +++ b/jstests/noPassthrough/transaction_reaper.js @@ -1,6 +1,11 @@ (function() { 'use strict'; + if (jsTest.options().storageEngine === "mmapv1") { + jsTestLog("Retryable writes are not supported, skipping test"); + return; + } + function Repl(lifetime) { this.rst = new ReplSetTest({ nodes: 1, |