diff options
author | Eliot Horowitz <eliot@10gen.com> | 2011-04-26 10:52:54 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2011-04-26 10:52:54 -0400 |
commit | b661f15b4d10920eecaa4fc659f2f2a4b8d14b1a (patch) | |
tree | 4727507257bd883015248f779ed5b74f67624d69 /buildscripts | |
parent | 65abee1492381fb4358c9a0c59e414b2e8f6511f (diff) | |
download | mongo-b661f15b4d10920eecaa4fc659f2f2a4b8d14b1a.tar.gz |
need a bigger oplog size
Diffstat (limited to 'buildscripts')
-rwxr-xr-x | buildscripts/smoke.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py index 2568acbe00e..6ae8b32aa97 100755 --- a/buildscripts/smoke.py +++ b/buildscripts/smoke.py @@ -145,7 +145,7 @@ class mongod(object): utils.ensureDir(dir_name) argv = [mongod_executable, "--port", str(self.port), "--dbpath", dir_name] if self.kwargs.get('small_oplog'): - argv += ["--master", "--oplogSize", "128"] + argv += ["--master", "--oplogSize", "256"] if self.slave: argv += ['--slave', '--source', 'localhost:' + str(srcport)] print "running " + " ".join(argv) |