From 96ca66e9fa63782864e536f0f3ea866f5e6503f5 Mon Sep 17 00:00:00 2001 From: Adam Midvidy Date: Mon, 22 Jun 2015 18:33:41 -0400 Subject: [PATCH] SERVER-19045 fix duplicate uassert code --- src/mongo/shell/shell_utils_launcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mongo/shell/shell_utils_launcher.cpp b/src/mongo/shell/shell_utils_launcher.cpp index 9d9ed7a5f95..370a0925397 100644 --- a/src/mongo/shell/shell_utils_launcher.cpp +++ b/src/mongo/shell/shell_utils_launcher.cpp @@ -180,7 +180,7 @@ void goingAwaySoon() { void ProgramOutputMultiplexer::appendLine(int port, ProcessId pid, const char* line) { stdx::lock_guard 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;