summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Solnik <dansolnik@gmail.com>2019-07-09 10:47:22 -0400
committerDaniel Solnik <dansolnik@gmail.com>2019-07-09 10:47:32 -0400
commitf5ad4be2a4bf349216f30a8d8e3256e235174d23 (patch)
treedb61dbca7f80cd9319de589c8838b30bedad045a
parentec0dd11141b54fb953d87e69be74d37ac86deaa3 (diff)
downloadmongo-f5ad4be2a4bf349216f30a8d8e3256e235174d23.tar.gz
SERVER-41907 Edited log message for assert that sorted data is returned from the external sorter in AbstractIndexAccessMethod::commitBulk
-rw-r--r--src/mongo/db/index/index_access_method.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/index/index_access_method.cpp b/src/mongo/db/index/index_access_method.cpp
index 29823241ff4..d727e0bd350 100644
--- a/src/mongo/db/index/index_access_method.cpp
+++ b/src/mongo/db/index/index_access_method.cpp
@@ -598,7 +598,7 @@ Status AbstractIndexAccessMethod::commitBulk(OperationContext* opCtx,
if (cmpData < 0) {
severe() << "expected the next key" << data.first.toString()
- << " to be greater than the previous key" << previousKey.toString();
+ << " to be greater than or equal to the previous key" << previousKey.toString();
fassertFailedNoTrace(31171);
}