Skip to content

Commit dedcf4e

Browse files
committed
bf(UTAPI-122): Bump fallback value to match default configuration
1 parent bd5c8d7 commit dedcf4e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

libV2/warp10.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ class Warp10Client {
1515
this._readToken = (config && config.readToken) || 'readTokenStatic';
1616
this.nodeId = (config && config.nodeId) || _config.nodeId;
1717
const proto = (config && config.tls) ? 'https' : 'http';
18-
this._requestTimeout = (config && config.requestTimeout) || 30000;
19-
this._connectTimeout = (config && config.connectTimeout) || 30000;
2018
const host = (config && config.host) || '127.0.0.1';
2119
const port = (config && config.port) || 4802;
20+
this._requestTimeout = (config && config.requestTimeout) || 60000;
21+
this._connectTimeout = (config && config.connectTimeout) || 60000;
2222
this._client = new Warp10(`${proto}://${host}:${port}`, this._requestTimeout, this._connectTimeout);
2323
}
2424

0 commit comments

Comments
 (0)