We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4070a9b commit 5897035Copy full SHA for 5897035
src/Adapters/Storage/Mongo/MongoStorageAdapter.js
@@ -571,13 +571,11 @@ export class MongoStorageAdapter {
571
572
// map out promises from individual classes
573
const promises = classes.map(() => { // schema
574
-
575
+
576
/* eslint-disable no-console */
577
- //console.info(`>>>>>> Preparing for ` + schema.className);
+ console.info(`>>>>>> Preparing for ` + schema.className);
578
/* eslint-enable no-console */
579
580
- /*
581
// get indexes for this given collection
582
return this.getIndexes(schema.className).then(() => { // indexes
583
@@ -594,7 +592,6 @@ export class MongoStorageAdapter {
594
592
}));
595
593
596
});
597
- */
598
599
return Promise.all(promises);
600
0 commit comments