Skip to content

Commit 071c504

Browse files
committed
fix: disable cleanup of non-existent cursus_users
already included in syncCursus function
1 parent 8db7e80 commit 071c504

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/intra/cleanup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,6 @@ const anonymizeUsers = async function(api: Fast42): Promise<void> {
150150
export const cleanupDB = async function(api: Fast42): Promise<void> {
151151
console.info('Cleaning up the database...');
152152
await cleanupDuplicateProjectUsers();
153-
await cleanupNonExistentCursusUsers(api);
153+
// await cleanupNonExistentCursusUsers(api); /* Disabled for now, as this is already included in the syncCursus function */
154154
await anonymizeUsers(api);
155155
};

0 commit comments

Comments
 (0)