The purge ttl for stray global objects have been shortened.

This commit is contained in:
default 2023-01-04 09:41:02 +01:00
parent 845df51686
commit 47e6e47323
2 changed files with 2 additions and 3 deletions

3
data.c
View File

@ -1483,12 +1483,11 @@ static void _purge_subdir(snac *snac, const char *subdir, int days)
void purge_server(void)
/* purge global server data */
{
int tpd = xs_number_get(xs_dict_get(srv_config, "timeline_purge_days"));
xs *spec = xs_fmt("%s/object/??", srv_basedir);
xs *dirs = xs_glob(spec, 0, 0);
char *p, *v;
time_t mt = time(NULL) - tpd * 24 * 3600;
time_t mt = time(NULL) - 7 * 24 * 3600;
p = dirs;
while (xs_list_iter(&p, &v)) {

2
snac.h
View File

@ -1,7 +1,7 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 grunfink - MIT license */
#define VERSION "2.17"
#define VERSION "2.18-dev"
#define USER_AGENT "snac/" VERSION