Skip to content

Commit

Permalink
adjust limits
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Oct 10, 2023
1 parent f83a2bb commit bcab998
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions svc/retriever.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ const steamObj = {};
const minUpTimeSeconds = 600;
const timeoutMs = 5000;
// maybe 200 per account?
const accountsToUse = 3;
const accountsToUse = 4;
// maybe can do 1000 per IP now?
const matchRequestLimit = 650;
const matchRequestLimit = 900;
const port = config.PORT || config.RETRIEVER_PORT;
const matchRequestDelay = 500;
const matchRequestDelayStep = 10;
const matchRequestDelay = 700;
const matchRequestDelayStep = 4;

let matchRequestDelayIncr = 0;
let lastRequestTime;
Expand Down

0 comments on commit bcab998

Please sign in to comment.