diff --git a/backend/src/data/cleanup/configs.ts b/backend/src/data/cleanup/configs.ts index 1d22ea52..58c6da24 100644 --- a/backend/src/data/cleanup/configs.ts +++ b/backend/src/data/cleanup/configs.ts @@ -9,6 +9,9 @@ const CLEAN_PER_LOOP = 50; export async function cleanupConfigs() { const configRepository = getRepository(Config); + // FIXME: The query below doesn't work on MySQL 8.0. Pending an update. + return; + let cleaned = 0; let rows;