Increase default timeout to 2000ms to align with steam server browser and allow for better compatibility with bad connections.

This commit is contained in:
mmorrison 2018-11-11 06:13:31 -06:00
parent 9b9277172d
commit ab4436d4cb
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ class Core extends EventEmitter {
constructor() {
super();
this.options = {
socketTimeout: 1000,
socketTimeout: 2000,
attemptTimeout: 10000,
maxAttempts: 1
};