Description
Repl set members should not be allowed to be added as standalone shards to a cluster. Example:
If localhost:30000 is part of repl set rs1 it should be added like this:
db.runCommand({addShard: "rs1/localhost:30000"});
|
Not this:
db.runCommand({addShard: "localhost:30000"});
|
This is a regression. 2.4.6 works fine.