Details
-
Bug
-
Resolution: Cannot Reproduce
-
Minor - P4
-
None
-
2.2.3
-
Linux
Description
When I run the function "getIndexes" I got duplicated results for a specific index (account_id_1_list_ids_1_status_1) with the same key.
db.contacts.getIndexes()
|
[
|
{
|
"v" : 1,
|
"key" : {
|
"_id" : 1
|
},
|
"ns" : "emailmarketing_production.contacts",
|
"name" : "_id_"
|
},
|
{
|
"v" : 1,
|
"key" : {
|
"account_id" : 1,
|
"list_ids" : 1,
|
"status" : 1
|
},
|
"ns" : "emailmarketing_production.contacts",
|
"name" : "account_id_1_list_ids_1_status_1",
|
"background" : true
|
},
|
{
|
"v" : 1,
|
"key" : {
|
"account_id" : 1,
|
"list_ids" : 1,
|
"status" : 1
|
},
|
"ns" : "emailmarketing_production.contacts",
|
"name" : "account_id_1_list_ids_1_status_1",
|
"background" : true
|
}
|
]
|