diff options
author | Mathias Stearn <mathias@10gen.com> | 2012-02-21 14:37:57 -0500 |
---|---|---|
committer | Mathias Stearn <mathias@10gen.com> | 2012-02-21 17:48:59 -0500 |
commit | 7b79d3b19323253bd977dba3dffbe4721cfd3beb (patch) | |
tree | 9643a89f1540749e5ec84914c21020de66e2cc9e /jstests/disk | |
parent | b2e03136d0d585df47d6c25f91c20f6bc98ec83d (diff) | |
download | mongo-7b79d3b19323253bd977dba3dffbe4721cfd3beb.tar.gz |
Disable journaling for disk/diskfull.js. SERVER-4557
journal diskfull tested in seporate test
Diffstat (limited to 'jstests/disk')
-rw-r--r-- | jstests/disk/diskfull.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/disk/diskfull.js b/jstests/disk/diskfull.js index c6f9fce2f76..de37db8e1ec 100644 --- a/jstests/disk/diskfull.js +++ b/jstests/disk/diskfull.js @@ -19,7 +19,7 @@ if ( doIt ) { files.forEach( function( x ) { removeFile( x.name ) } ); port = allocatePorts( 1 )[ 0 ]; - m = startMongoProgram( "mongod", "--port", port, "--dbpath", dbpath, "--nohttpinterface", "--bind_ip", "127.0.0.1", '--durOptions', 64 ); + m = startMongoProgram( "mongod", "--port", port, "--dbpath", dbpath, "--nohttpinterface", "--bind_ip", "127.0.0.1", '--nojournal' ); d = m.getDB( "diskfulltest" ); c = d.getCollection( "diskfulltest" ); c.save( { a: 6 } ); |