this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

relay: bump default repo limit configuration (#694)

The main thing here is `DefaultRepoLimit`. Also bumped the other numbers
a bit to be consistent.

authored by

bnewbold and committed by
GitHub
b230db41 fc60972a

+3 -3
+3 -3
bgs/fedmgr.go
··· 72 72 return &SlurperOptions{ 73 73 SSL: false, 74 74 DefaultPerSecondLimit: 50, 75 - DefaultPerHourLimit: 1500, 76 - DefaultPerDayLimit: 10_000, 75 + DefaultPerHourLimit: 2500, 76 + DefaultPerDayLimit: 20_000, 77 77 DefaultCrawlLimit: rate.Limit(5), 78 - DefaultRepoLimit: 10, 78 + DefaultRepoLimit: 100, 79 79 } 80 80 } 81 81