diff --git a/modules/persistence/src/services/connector/index.ts b/modules/persistence/src/services/connector/index.ts index a43fceb5a..2b1dfe888 100644 --- a/modules/persistence/src/services/connector/index.ts +++ b/modules/persistence/src/services/connector/index.ts @@ -38,7 +38,7 @@ export const db = async () => { }; // all docs should be inserted with the buildId for the run. -export const insert = async (docs: any[], collection: string, buildId: ObjectId, printTime: boolean = false) => { +export const insert = async (docs: any[], collection: string, buildId: ObjectId, printTime = false) => { const timerLabel = `insert - ${collection}`; if (printTime) console.time(timerLabel); const insertSession = await db();