diff options
author | Adam Midvidy <amidvidy@gmail.com> | 2015-06-22 18:33:41 -0400 |
---|---|---|
committer | Adam Midvidy <amidvidy@gmail.com> | 2015-06-22 18:33:41 -0400 |
commit | 96ca66e9fa63782864e536f0f3ea866f5e6503f5 (patch) | |
tree | c676b416559d56c76b27f383c197ae052a6f9f6b /src/mongo/shell | |
parent | dfed23f6c712a0e6b49a2545595d039599d2a30c (diff) | |
download | mongo-96ca66e9fa63782864e536f0f3ea866f5e6503f5.tar.gz |
SERVER-19045 fix duplicate uassert code
Diffstat (limited to 'src/mongo/shell')
-rw-r--r-- | src/mongo/shell/shell_utils_launcher.cpp | 2 |
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; |