0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-29 00:32:18 +01:00

SERVER-19045 fix duplicate uassert code

This commit is contained in:
Adam Midvidy 2015-06-22 18:33:41 -04:00
parent dfed23f6c7
commit 96ca66e9fa

View File

@ -180,7 +180,7 @@ void goingAwaySoon() {
void ProgramOutputMultiplexer::appendLine(int port, ProcessId pid, const char* line) {
stdx::lock_guard<stdx::mutex> lk(mongoProgramOutputMutex);
uassert(28689, "program is terminating", !mongo::dbexitCalled);
uassert(28695, "program is terminating", !mongo::dbexitCalled);
stringstream buf;
if (port > 0)
buf << " m" << port << "| " << line;