diff --git a/CHANGES_NEXT_RELEASE b/CHANGES_NEXT_RELEASE index 2fe7453c..2f658ccf 100644 --- a/CHANGES_NEXT_RELEASE +++ b/CHANGES_NEXT_RELEASE @@ -1,2 +1,3 @@ +- Fix: do not search in entities collection with strict mode by non_signal checker (#793) - Fix: do not try cast entity id and entity type in update rules when expand parameters of rule to avoid BadRequest en CB tries to update that entities (#791) - Fix: do not invoke calback twice when error about trust not found in trustConf (#790) diff --git a/lib/models/entitiesStore.js b/lib/models/entitiesStore.js index 423fcf86..2e0ef42a 100644 --- a/lib/models/entitiesStore.js +++ b/lib/models/entitiesStore.js @@ -151,7 +151,7 @@ function findSilentEntitiesByMongo(service, subservice, ruleData, alterFunc, cal async.waterfall( [ - db.collection.bind(db, entitiesCollectionName, { strict: true }), + db.collection.bind(db, entitiesCollectionName, { strict: false }), function(col, cb) { col.find(criterion) .batchSize(config.orionDb.batchSize)