Details
-
Bug
-
Resolution: Done
-
Major - P3
-
2.1.0
-
None
-
ALL
Description
Steps to reproduce:
- Start up a stand-alone server, create a capped collection, create a unique index on _id on said collection.
test> db.createCollection("foo",{capped:true,size:1000}){ "ok" : 1 }test> db.foo.ensureIndex({_id:1},{unique:true}) - Restart server as the first member of a replica set
- Add another member to the replica set
- The new member will have the collection foo, but no _id index.