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 {
|
||||
BaseHandler,
|
||||
Disabled,
|
||||
Handler,
|
||||
Operation,
|
||||
ScheduledOperation,
|
||||
|
|
@ -67,6 +68,7 @@ export class QMHandler extends BaseHandler<DataIngestionServices> {
|
|||
@Operation('update-symbol-info')
|
||||
updateSymbolInfo = updateSymbolInfo;
|
||||
|
||||
@Disabled()
|
||||
@ScheduledOperation('schedule-symbol-info-updates', '0 */6 * * *', {
|
||||
priority: 7,
|
||||
immediately: false,
|
||||
|
|
@ -80,6 +82,7 @@ export class QMHandler extends BaseHandler<DataIngestionServices> {
|
|||
@Operation('update-financials')
|
||||
updateFinancials = updateFinancials;
|
||||
|
||||
@Disabled()
|
||||
@ScheduledOperation('schedule-financials-updates', '0 2 * * *', {
|
||||
priority: 6,
|
||||
immediately: false,
|
||||
|
|
@ -93,6 +96,7 @@ export class QMHandler extends BaseHandler<DataIngestionServices> {
|
|||
@Operation('update-corporate-actions')
|
||||
updateCorporateActions = updateCorporateActions;
|
||||
|
||||
@Disabled()
|
||||
@ScheduledOperation('schedule-corporate-actions-updates', '0 3 * * *', {
|
||||
priority: 6,
|
||||
immediately: false,
|
||||
|
|
@ -106,6 +110,7 @@ export class QMHandler extends BaseHandler<DataIngestionServices> {
|
|||
@Operation('update-filings')
|
||||
updateFilings = updateFilings;
|
||||
|
||||
@Disabled()
|
||||
@ScheduledOperation('schedule-filings-updates', '0 */8 * * *', {
|
||||
priority: 5,
|
||||
immediately: false,
|
||||
|
|
@ -119,6 +124,7 @@ export class QMHandler extends BaseHandler<DataIngestionServices> {
|
|||
@Operation('update-prices')
|
||||
updatePrices = updatePrices;
|
||||
|
||||
@Disabled()
|
||||
@ScheduledOperation('schedule-price-updates', '0 */6 * * *', {
|
||||
priority: 8,
|
||||
immediately: false,
|
||||
|
|
@ -132,6 +138,7 @@ export class QMHandler extends BaseHandler<DataIngestionServices> {
|
|||
@Operation('update-intraday-bars')
|
||||
updateIntradayBars = updateIntradayBars;
|
||||
|
||||
@Disabled()
|
||||
@ScheduledOperation('schedule-intraday-updates', '*/30 * * * *', {
|
||||
priority: 9,
|
||||
immediately: false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue