added disabled
This commit is contained in:
parent
2e86598262
commit
2011c4c83f
1 changed files with 7 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
import {
|
import {
|
||||||
BaseHandler,
|
BaseHandler,
|
||||||
|
Disabled,
|
||||||
Handler,
|
Handler,
|
||||||
Operation,
|
Operation,
|
||||||
ScheduledOperation,
|
ScheduledOperation,
|
||||||
|
|
@ -67,6 +68,7 @@ export class QMHandler extends BaseHandler<DataIngestionServices> {
|
||||||
@Operation('update-symbol-info')
|
@Operation('update-symbol-info')
|
||||||
updateSymbolInfo = updateSymbolInfo;
|
updateSymbolInfo = updateSymbolInfo;
|
||||||
|
|
||||||
|
@Disabled()
|
||||||
@ScheduledOperation('schedule-symbol-info-updates', '0 */6 * * *', {
|
@ScheduledOperation('schedule-symbol-info-updates', '0 */6 * * *', {
|
||||||
priority: 7,
|
priority: 7,
|
||||||
immediately: false,
|
immediately: false,
|
||||||
|
|
@ -80,6 +82,7 @@ export class QMHandler extends BaseHandler<DataIngestionServices> {
|
||||||
@Operation('update-financials')
|
@Operation('update-financials')
|
||||||
updateFinancials = updateFinancials;
|
updateFinancials = updateFinancials;
|
||||||
|
|
||||||
|
@Disabled()
|
||||||
@ScheduledOperation('schedule-financials-updates', '0 2 * * *', {
|
@ScheduledOperation('schedule-financials-updates', '0 2 * * *', {
|
||||||
priority: 6,
|
priority: 6,
|
||||||
immediately: false,
|
immediately: false,
|
||||||
|
|
@ -93,6 +96,7 @@ export class QMHandler extends BaseHandler<DataIngestionServices> {
|
||||||
@Operation('update-corporate-actions')
|
@Operation('update-corporate-actions')
|
||||||
updateCorporateActions = updateCorporateActions;
|
updateCorporateActions = updateCorporateActions;
|
||||||
|
|
||||||
|
@Disabled()
|
||||||
@ScheduledOperation('schedule-corporate-actions-updates', '0 3 * * *', {
|
@ScheduledOperation('schedule-corporate-actions-updates', '0 3 * * *', {
|
||||||
priority: 6,
|
priority: 6,
|
||||||
immediately: false,
|
immediately: false,
|
||||||
|
|
@ -106,6 +110,7 @@ export class QMHandler extends BaseHandler<DataIngestionServices> {
|
||||||
@Operation('update-filings')
|
@Operation('update-filings')
|
||||||
updateFilings = updateFilings;
|
updateFilings = updateFilings;
|
||||||
|
|
||||||
|
@Disabled()
|
||||||
@ScheduledOperation('schedule-filings-updates', '0 */8 * * *', {
|
@ScheduledOperation('schedule-filings-updates', '0 */8 * * *', {
|
||||||
priority: 5,
|
priority: 5,
|
||||||
immediately: false,
|
immediately: false,
|
||||||
|
|
@ -119,6 +124,7 @@ export class QMHandler extends BaseHandler<DataIngestionServices> {
|
||||||
@Operation('update-prices')
|
@Operation('update-prices')
|
||||||
updatePrices = updatePrices;
|
updatePrices = updatePrices;
|
||||||
|
|
||||||
|
@Disabled()
|
||||||
@ScheduledOperation('schedule-price-updates', '0 */6 * * *', {
|
@ScheduledOperation('schedule-price-updates', '0 */6 * * *', {
|
||||||
priority: 8,
|
priority: 8,
|
||||||
immediately: false,
|
immediately: false,
|
||||||
|
|
@ -132,6 +138,7 @@ export class QMHandler extends BaseHandler<DataIngestionServices> {
|
||||||
@Operation('update-intraday-bars')
|
@Operation('update-intraday-bars')
|
||||||
updateIntradayBars = updateIntradayBars;
|
updateIntradayBars = updateIntradayBars;
|
||||||
|
|
||||||
|
@Disabled()
|
||||||
@ScheduledOperation('schedule-intraday-updates', '*/30 * * * *', {
|
@ScheduledOperation('schedule-intraday-updates', '*/30 * * * *', {
|
||||||
priority: 9,
|
priority: 9,
|
||||||
immediately: false,
|
immediately: false,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue