Skip to content

Commit

Permalink
Temporarily increase the number of events showin on recent_events to …
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
bakert committed Jan 15, 2025
1 parent 856e514 commit 2501be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gatherling/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 2501be8

Please sign in to comment.