summaryrefslogtreecommitdiff
path: root/src/mongo/shell
diff options
context:
space:
mode:
authorAdam Midvidy <amidvidy@gmail.com>2015-06-22 18:33:41 -0400
committerAdam Midvidy <amidvidy@gmail.com>2015-06-22 18:33:41 -0400
commit96ca66e9fa63782864e536f0f3ea866f5e6503f5 (patch)
treec676b416559d56c76b27f383c197ae052a6f9f6b /src/mongo/shell
parentdfed23f6c712a0e6b49a2545595d039599d2a30c (diff)
downloadmongo-96ca66e9fa63782864e536f0f3ea866f5e6503f5.tar.gz
SERVER-19045 fix duplicate uassert code
Diffstat (limited to 'src/mongo/shell')
-rw-r--r--src/mongo/shell/shell_utils_launcher.cpp2
1 files changed, 1 insertions, 1 deletions
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<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;