diff options
author | Eliot Horowitz <eliot@10gen.com> | 2011-09-14 22:51:16 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2011-09-14 22:51:16 -0400 |
commit | 692f4ec8dfbb75c5d2f5a28b70231f8f95d4b95e (patch) | |
tree | fc24cd3b17909b3d57b95a6e91ae8f0ddb0bb25f /db | |
parent | ade41dcba82cff6ea004d9252ecf90b6a6d0443f (diff) | |
download | mongo-692f4ec8dfbb75c5d2f5a28b70231f8f95d4b95e.tar.gz |
fix reIndex on secondaries SERVER-3866
Diffstat (limited to 'db')
-rw-r--r-- | db/dbcommands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/dbcommands.cpp b/db/dbcommands.cpp index 31f4b7fedfb..1445c4dd04e 100644 --- a/db/dbcommands.cpp +++ b/db/dbcommands.cpp @@ -949,7 +949,7 @@ namespace mongo { } list<BSONObj> all; - auto_ptr<DBClientCursor> i = db.getIndexes( toDeleteNs ); + auto_ptr<DBClientCursor> i = db.query( dbname + ".system.indexes" , BSON( "ns" << toDeleteNs ) , 0 , 0 , 0 , QueryOption_SlaveOk ); BSONObjBuilder b; while ( i->more() ) { BSONObj o = i->next().removeField("v").getOwned(); |