summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorKristina Chodorow <k@ubuntu.(none)>2010-07-30 13:26:53 -0400
committerKristina Chodorow <k@ubuntu.(none)>2010-07-30 13:26:53 -0400
commitee8252f22fb8f0a927b84d7519715b0067d8e156 (patch)
tree4eebe75201591890b805aaf6ed9ed5e76cc901f9 /shell
parent44e6792db6432c80009d15f217d3ced5a0b0ab49 (diff)
downloadmongo-ee8252f22fb8f0a927b84d7519715b0067d8e156.tar.gz
increased oplog size and added rollback test
Diffstat (limited to 'shell')
-rw-r--r--shell/servers.js4
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);
}