diff options
author | matt dannenberg <matt.dannenberg@10gen.com> | 2015-11-11 10:22:21 -0500 |
---|---|---|
committer | matt dannenberg <matt.dannenberg@10gen.com> | 2015-11-11 10:22:33 -0500 |
commit | fcb244132ae0b8490e4b96627ab1d5955c433804 (patch) | |
tree | d7bc5ff83d7a2040662978134a771ca37ce9f9cc /jstests/replsets/rollback2.js | |
parent | 065197c7d656e420d0abfbd4ce8a5b18886ff63d (diff) | |
download | mongo-fcb244132ae0b8490e4b96627ab1d5955c433804.tar.gz |
SERVER-21406 add error message to assert.soon due to new timeout
Diffstat (limited to 'jstests/replsets/rollback2.js')
-rw-r--r-- | jstests/replsets/rollback2.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/replsets/rollback2.js b/jstests/replsets/rollback2.js index ef71bfba252..1b91c8803f3 100644 --- a/jstests/replsets/rollback2.js +++ b/jstests/replsets/rollback2.js @@ -84,7 +84,7 @@ load("jstests/replsets/rslib.js"); } catch(e) { return false; } - }, timeout); + }, "node B did not become master as expected", timeout); // do operations on B and B alone, these will be rolled back assert.writeOK(b.bar.insert({ q: 4 })); |