Skip to content

Commit

Permalink
adjust rate limit
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Nov 21, 2024
1 parent bb0810e commit cfa7114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svc/backfill.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import fs from 'fs';

// This endpoint is limited to something like 1 request every 5 seconds
const apiHosts = config.STEAM_API_HOST.split(',');
const SCANNER_WAIT = 3000 / apiHosts.length;
const SCANNER_WAIT = 2000 / apiHosts.length;
const blobArchive = new Archive('blob');

// We can stop at approximately 6400000000 (Feb 2024)
Expand Down

0 comments on commit cfa7114

Please sign in to comment.