Skip to content

Commit

Permalink
adjust limits
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Oct 9, 2023
1 parent aa80c5b commit ae2cfd0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions svc/retriever.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const app = express();
const steamObj = {};
const minUpTimeSeconds = 120;
const timeoutMs = 1500;
const accountsToUse = 3;
const matchRequestLimit = 650;
const accountsToUse = 2;
const matchRequestLimit = 950;
const port = config.PORT || config.RETRIEVER_PORT;
const matchRequestDelay = 400;
const matchRequestDelayStep = 3;
Expand Down Expand Up @@ -288,10 +288,9 @@ function init() {
}

if (logOnResp.eresult !== Steam.EResult.OK) {
// try logging on again
console.error(logOnResp);
// client.steamUser.logOn(logOnDetails);
cb();
// client.steamUser.logOn(logOnDetails);
return;
}

Expand Down

0 comments on commit ae2cfd0

Please sign in to comment.