mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-27 09:06:15 +01:00
fix: don't crash server if analytics fails to save
fixes
MongoBulkWriteError: E11000 duplicate key error collection:
community.objects index: _key_1_value_-1 dup key: { _key: "analytics:pageviews", value: "1639807200000" }
This commit is contained in:
@@ -159,7 +159,6 @@ Analytics.writeData = async function () {
|
|||||||
await Promise.all(dbQueue);
|
await Promise.all(dbQueue);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
winston.error(`[analytics] Encountered error while writing analytics to data store\n${err.stack}`);
|
winston.error(`[analytics] Encountered error while writing analytics to data store\n${err.stack}`);
|
||||||
throw err;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user