Mongo 2.6 makes --nohttpinterface the default

This commit is contained in:
David Glasser
2015-02-03 19:24:24 -08:00
parent 5d08559cc7
commit 30481e10bb
2 changed files with 1 additions and 2 deletions

View File

@@ -42,7 +42,6 @@ var spawnMongod = function (mongodPath, port, dbPath, replSetName) {
// order of the arguments! Check them before changing any arguments.
'--bind_ip', '127.0.0.1',
'--smallfiles',
'--nohttpinterface',
'--port', port,
'--dbpath', dbPath,
// Use an 8MB oplog rather than 256MB. Uses less space on disk and

View File

@@ -105,7 +105,7 @@ tar tvzf "$DIR.tar.gz" >>$OUTPUT
cd .. # we're now back to $DIR
echo "... run"
MONGOMARK='--bind_ip 127.0.0.1 --smallfiles --nohttpinterface --port 9101'
MONGOMARK='--bind_ip 127.0.0.1 --smallfiles --port 9101'
# kill any old test meteor
# there is probably a better way to do this, but it is at least portable across macos and linux
# (the || true is needed on linux, whose xargs will invoke kill even with no args)