Browse Source

Do not skip MANUAL data source

pull/1718/head
Thomas 3 years ago
parent
commit
727634fd3e
  1. 4
      apps/api/src/services/data-gathering.service.ts

4
apps/api/src/services/data-gathering.service.ts

@ -207,10 +207,6 @@ export class DataGatheringService {
public async gatherSymbols(aSymbolsWithStartDate: IDataGatheringItem[]) {
for (const { dataSource, date, symbol } of aSymbolsWithStartDate) {
if (dataSource === 'MANUAL') {
continue;
}
await this.addJobToQueue(
GATHER_HISTORICAL_MARKET_DATA_PROCESS,
{

Loading…
Cancel
Save