From 84ded2f3a50162784403178ff3b71d3715620d2f Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 19 Oct 2023 08:42:01 -0600 Subject: [PATCH] Turn off remote prune for now --- takahe/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/takahe/settings.py b/takahe/settings.py index a5dd4dd..03c8b2b 100644 --- a/takahe/settings.py +++ b/takahe/settings.py @@ -145,8 +145,8 @@ class Settings(BaseSettings): # How long to wait, in days, until remote posts/profiles are pruned from # our database if nobody local has interacted with them. Must be in rough - # multiples of two weeks. - REMOTE_PRUNE_HORIZON: int = 60 + # multiples of two weeks. Set to zero to disable. + REMOTE_PRUNE_HORIZON: int = 0 # Stator tuning STATOR_CONCURRENCY: int = 50