|
The -u switch only applies to the shell and tools, not to the server, so this is not a regression. This is due to the same problem as SERVER-7317 that's making dur/md5.js fail, which is that they both use runMongoProgram (which adds a -u and -p argument when running in auth mode) to start a mongod so that they can get the return code when the process finishes. The ideal fix would be to use startMongodTest which does the right thing with auth, but startMongodTest doesn't currently provide any way to check the return code of the mongod process when it terminates.
|