Skip to content

Commit

Permalink
update bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Apr 25, 2024
1 parent 40f98a0 commit 2385a35
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,12 +15,12 @@ const app = express();
const steamObj: Record<string, SteamUser> = {};
const minUpTimeSeconds = 300;

const numAccounts = 15;
const matchesPerAccount = 70;
const numAccounts = 5;
const matchesPerAccount = 100;
const accountAttemptMax = 5;
const port = config.PORT || config.RETRIEVER_PORT;
const getMatchRequestInterval = () => {
return Math.ceil(5000 / (Object.keys(steamObj).length || 1));
return Math.ceil(10000 / (Object.keys(steamObj).length || 1));
};
const noneReady = () =>
Object.values(steamObj).filter((client) => client.steamID).length === 0;
Expand Down

0 comments on commit 2385a35

Please sign in to comment.