From 366f76a619a0329b0ef182cdf9a7c5ab89e11c3a Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sun, 18 Jun 2023 01:39:38 -0400 Subject: [PATCH] Increase number of old rooms to delete nightly --- scripts/matrix/clean-old-rooms.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/matrix/clean-old-rooms.sh b/scripts/matrix/clean-old-rooms.sh index 720d9c9..ce3a958 100755 --- a/scripts/matrix/clean-old-rooms.sh +++ b/scripts/matrix/clean-old-rooms.sh @@ -4,7 +4,7 @@ set -eou pipefail # Get the list of rooms with no local users empty_rooms() { psql -d synapse -c "SELECT room_id FROM room_stats_current WHERE local_users_in_room = 0 \ - ORDER BY current_state_events DESC LIMIT 1;" -t --csv + ORDER BY current_state_events DESC LIMIT 3;" -t --csv } # Delete a room and purge its history