summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2011-01-19 23:17:36 -0500
committerEliot Horowitz <eliot@10gen.com>2011-01-19 23:18:15 -0500
commitcb48ff63f27dd5c133206eac101fe87ad11d9eb2 (patch)
tree91ad6cd391ac787c19f4ce8669374e2ecf2e581f /buildscripts
parentf964db5b9e282a733fc2629d4fa96a513ac828c8 (diff)
downloadmongo-cb48ff63f27dd5c133206eac101fe87ad11d9eb2.tar.gz
increase small oplog to 128 from 100
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/smoke.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py
index 3ec5473ec0c..5fdd26fe1d5 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", "100"]
+ argv += ["--master", "--oplogSize", "128"]
if self.slave:
argv += ['--slave', '--source', 'localhost:' + str(srcport)]
print "running " + " ".join(argv)