-
Type: Bug
-
Resolution: Done
-
Priority: Major - P3
-
Affects Version/s: 2.1.0
-
Component/s: Replication
-
None
-
ALL
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.