Browse Source

Increase timeout

pull/2800/head
Thomas Kaul 2 years ago
parent
commit
4662c8d4ec
  1. 4
      apps/api/src/services/exchange-rate-data/exchange-rate-data.service.ts

4
apps/api/src/services/exchange-rate-data/exchange-rate-data.service.ts

@ -11,6 +11,7 @@ import { DATE_FORMAT, getYesterday } from '@ghostfolio/common/helper';
import { Injectable, Logger } from '@nestjs/common';
import { format, isToday } from 'date-fns';
import { isNumber, uniq } from 'lodash';
import ms from 'ms';
@Injectable()
export class ExchangeRateDataService {
@ -75,7 +76,8 @@ export class ExchangeRateDataService {
const quotes = await this.dataProviderService.getQuotes({
items: this.currencyPairs.map(({ dataSource, symbol }) => {
return { dataSource, symbol };
})
}),
requestTimeout: ms('30 seconds')
});
for (const symbol of Object.keys(quotes)) {

Loading…
Cancel
Save