We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef81b29 commit 2ef154bCopy full SHA for 2ef154b
1 file changed
src/models/reconstruction.ts
@@ -1204,6 +1204,9 @@ export class Reconstruction extends BaseModel {
1204
await reconstruction.update({status: ReconstructionStatus.ApprovedAndReady}, {transaction});
1205
}
1206
1207
+ // TODO Precomputed worker should periodically look for skeletons that are no longer part of the active
1208
+ await Precomputed.destroy({where: {reconstructionId: reconstruction.id}});
1209
+
1210
promises = reconstruction.Tracings.map(async (t) => {
1211
await SearchContent.destroy({where: {tracingId: t.id}, transaction});
1212
});
0 commit comments