From 2501be84cef17a603d7e3a063b1a64bce69423e1 Mon Sep 17 00:00:00 2001 From: Thomas David Baker Date: Tue, 14 Jan 2025 17:58:37 -0800 Subject: [PATCH] Temporarily increase the number of events showin on recent_events to fix snafu We had to restore Gatherling from a db backup and we're backfilling missing events and we want pennydreadfulmagic.com to see them as they are filled so that they can be scraped. --- gatherling/api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatherling/api.php b/gatherling/api.php index fbb40ed99..024ad7c39 100644 --- a/gatherling/api.php +++ b/gatherling/api.php @@ -104,7 +104,7 @@ function main(): never FROM events e WHERE e.finalized AND e.start < NOW() ORDER BY e.start DESC - LIMIT 10'; + LIMIT 100'; $eventNames = db()->strings($sql); foreach ($eventNames as $eventName) { $event = new Event($eventName);