summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/storage_interface_impl_test.cpp
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2017-07-25 22:01:42 -0400
committerGregory Wlodarek <gregory.wlodarek@mongodb.com>2017-07-25 22:01:42 -0400
commitd013a288a1c6ec22133fbf92a6fad9422893fb9c (patch)
treeb8df2302d8f13be3c1ff0cdb9d7aa4df32b824f2 /src/mongo/db/repl/storage_interface_impl_test.cpp
parent6bc5c57e45cd6aa211fec404692c472b18be31d6 (diff)
downloadmongo-d013a288a1c6ec22133fbf92a6fad9422893fb9c.tar.gz
SERVER-29491 Only full validate should verifyTable
Diffstat (limited to 'src/mongo/db/repl/storage_interface_impl_test.cpp')
-rw-r--r--src/mongo/db/repl/storage_interface_impl_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/repl/storage_interface_impl_test.cpp b/src/mongo/db/repl/storage_interface_impl_test.cpp
index 825402ef879..46aed798f78 100644
--- a/src/mongo/db/repl/storage_interface_impl_test.cpp
+++ b/src/mongo/db/repl/storage_interface_impl_test.cpp
@@ -131,7 +131,7 @@ int64_t getIndexKeyCount(OperationContext* opCtx, IndexCatalog* cat, IndexDescri
auto idx = cat->getIndex(desc);
int64_t numKeys;
ValidateResults fullRes;
- idx->validate(opCtx, &numKeys, &fullRes).transitional_ignore();
+ idx->validate(opCtx, &numKeys, &fullRes);
return numKeys;
}