From 7abedeba83acfedc0bfcee08c9a58a27ca9845b9 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Fri, 23 Jan 2026 17:43:13 +0100 Subject: [PATCH] Minor reword in the cleanup jobs documentation Co-authored-by: Olivier 'reivilibre' --- docs/development/cleanup-jobs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development/cleanup-jobs.md b/docs/development/cleanup-jobs.md index 045946435..639d0e7a3 100644 --- a/docs/development/cleanup-jobs.md +++ b/docs/development/cleanup-jobs.md @@ -1,6 +1,6 @@ # Cleanup Jobs -In MAS, most of the data only soft-deleted, through setting a `deleted_at`, `finished_at`, `consumed_at` timestamp on the row, instead of actually deleting the row. +In MAS, most of the data are initially only soft-deleted, by setting a `deleted_at`, `finished_at`, `consumed_at` timestamp on the row, instead of actually deleting the row. They are kept around for a short period of time, for audit purposes or to help with the user experience in some case. This document describes the cleanup jobs in MAS which delete those stale rows after some time, including how to add new cleanup jobs and understand the existing ones.