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 ad55add commit 34a8518Copy full SHA for 34a8518
api/jobs/deletionManagerJob.js
@@ -77,9 +77,7 @@ class DeletionManagerJob extends Job {
77
const mongoOk = await this.deleteMongo(task);
78
let chOk = true;
79
if (clickHouseRunner && clickHouseRunner.deleteGranularDataByQuery) {
80
- console.time("deletionManagerJob_4");
81
chOk = await this.deleteClickhouse(task);
82
- console.timeEnd("deletionManagerJob_4");
83
}
84
if (mongoOk && chOk) {
85
await common.db.collection("deletion_manager").deleteOne({ _id: task._id });
0 commit comments