Feature/increase timeout to load currencies (#2800)

* Increase timeout

* Update changelog
This commit is contained in:
Thomas Kaul
2023-12-31 10:23:56 +01:00
committed by GitHub
parent 53ce37a83a
commit b89bf1d5e8
2 changed files with 4 additions and 1 deletions

View File

@@ -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)) {