Skip to content

Commit

Permalink
increase timeout value
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Oct 10, 2023
1 parent 5e64e72 commit a337bde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions svc/retriever.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ const advancedAuth = config.ENABLE_RETRIEVER_ADVANCED_AUTH
const app = express();
const steamObj = {};
const minUpTimeSeconds = 600;
const timeoutMs = 1500;
const timeoutMs = 5000;
const accountsToUse = 2;
const matchRequestLimit = 950;
const port = config.PORT || config.RETRIEVER_PORT;
const matchRequestDelay = 500;
const matchRequestDelayStep = 100;
const matchRequestDelayStep = 50;

let matchRequestDelayIncr = 0;
let lastRequestTime;
Expand Down

0 comments on commit a337bde

Please sign in to comment.