diff options
author | Eliot Horowitz <eliot@10gen.com> | 2013-10-23 18:35:19 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2013-10-23 18:35:19 -0400 |
commit | 2bc327964e59cfc7d2a0a5241df04d56b5a039a3 (patch) | |
tree | 6e9a5869ea326b8bebd7279564541ddc88209f71 /src/mongo/db/catalog | |
parent | deea07bcc3ab166cc6cb5c025d46b89fb4c02236 (diff) | |
download | mongo-2bc327964e59cfc7d2a0a5241df04d56b5a039a3.tar.gz |
SERVER-11178: fix index rebuilding after crash
Diffstat (limited to 'src/mongo/db/catalog')
-rw-r--r-- | src/mongo/db/catalog/index_catalog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/catalog/index_catalog.cpp b/src/mongo/db/catalog/index_catalog.cpp index 12e5478d57a..d7de82e450a 100644 --- a/src/mongo/db/catalog/index_catalog.cpp +++ b/src/mongo/db/catalog/index_catalog.cpp @@ -512,7 +512,7 @@ namespace mongo { BSONObj info = _details->idx(offset).info.obj().getOwned(); - Status s = dropIndex( offset ); + Status s = _dropIndex( offset ); massert( 17200, str::stream() << "failed to to dropIndex in prepOneUnfinishedIndex: " << s.toString(), |