diff options
author | Kristina Chodorow <k@ubuntu.(none)> | 2010-07-30 13:26:53 -0400 |
---|---|---|
committer | Kristina Chodorow <k@ubuntu.(none)> | 2010-07-30 13:26:53 -0400 |
commit | ee8252f22fb8f0a927b84d7519715b0067d8e156 (patch) | |
tree | 4eebe75201591890b805aaf6ed9ed5e76cc901f9 /shell | |
parent | 44e6792db6432c80009d15f217d3ced5a0b0ab49 (diff) | |
download | mongo-ee8252f22fb8f0a927b84d7519715b0067d8e156.tar.gz |
increased oplog size and added rollback test
Diffstat (limited to 'shell')
-rw-r--r-- | shell/servers.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/servers.js b/shell/servers.js index 1f66780b428..ac91607121d 100644 --- a/shell/servers.js +++ b/shell/servers.js @@ -1010,12 +1010,12 @@ ReplSetTest.prototype.getOptions = function( n , extra , putBinaryFirst ){ return a; } -ReplSetTest.prototype.startSet = function() { +ReplSetTest.prototype.startSet = function(options) { var nodes = []; print( "Starting Set" ); for(n=0; n<this.ports.length; n++) { - node = this.start(n); + node = this.start(n, options); nodes.push(node); } |