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:
parent
dfed23f6c7
commit
96ca66e9fa
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user