Skip to content

Commit

Permalink
Update retriever.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Apr 25, 2024
1 parent 98d0b1f commit 8004a07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions svc/retriever.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ const app = express();
const steamObj: Record<string, SteamUser> = {};
const minUpTimeSeconds = 300;

const numAccounts = 6;
const matchesPerAccount = 120;
const accountAttemptMax = 6
const numAccounts = 15;
const matchesPerAccount = 70;
const accountAttemptMax = 5;
const port = config.PORT || config.RETRIEVER_PORT;
const getMatchRequestInterval = () => {
return Math.ceil(5000 / (Object.keys(steamObj).length || 1));
Expand Down

0 comments on commit 8004a07

Please sign in to comment.