up timeout for now + don't log
Replays have issues since they are on v1 and timeout. This process needs to be improved on the backend. don't log all
This commit is contained in:
parent
f191cf0b88
commit
c6856da247
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
// @flow
|
||||
import analytics from 'analytics';
|
||||
// import analytics from 'analytics';
|
||||
import { FETCH_TIMEOUT } from 'constants/errors';
|
||||
import { NO_AUTH, X_LBRY_AUTH_TOKEN } from 'constants/token';
|
||||
import fetchWithTimeout from 'util/fetch';
|
||||
|
@ -306,7 +306,7 @@ export function apiCall(method: string, params: ?{}, resolve: Function, reject:
|
|||
? Lbry.alternateConnectionString
|
||||
: Lbry.daemonConnectionString;
|
||||
|
||||
const SDK_FETCH_TIMEOUT_MS = 60000;
|
||||
const SDK_FETCH_TIMEOUT_MS = 1800000;
|
||||
return fetchWithTimeout(SDK_FETCH_TIMEOUT_MS, fetch(connectionString + '?m=' + method, options))
|
||||
.then((response) => checkAndParse(response, method))
|
||||
.then((response) => {
|
||||
|
@ -322,7 +322,7 @@ export function apiCall(method: string, params: ?{}, resolve: Function, reject:
|
|||
.catch((err) => {
|
||||
ApiFailureMgr.logFailure(method, params, counter);
|
||||
if (err?.message === FETCH_TIMEOUT) {
|
||||
analytics.error(`${method}: timed out after ${SDK_FETCH_TIMEOUT_MS / 1000}s`);
|
||||
// analytics.error(`${method}: timed out after ${SDK_FETCH_TIMEOUT_MS / 1000}s`);
|
||||
reject(resolveFetchErrorMsg(method, FETCH_TIMEOUT));
|
||||
} else {
|
||||
reject(err);
|
||||
|
|
Loading…
Reference in a new issue