Skip to content

Commit

Permalink
update limits
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Oct 10, 2023
1 parent 2ea8bea commit d98c4a9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions svc/retriever.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ const app = express();
const steamObj = {};
const minUpTimeSeconds = 600;
const timeoutMs = 5000;
const accountsToUse = 5;
// maybe 200 per account?
const accountsToUse = 3;
// maybe can do 1000 per IP now?
const matchRequestLimit = 550;
const matchRequestLimit = 600;
const port = config.PORT || config.RETRIEVER_PORT;
const matchRequestDelay = 500;
const matchRequestDelayStep = 50;
Expand Down

0 comments on commit d98c4a9

Please sign in to comment.