0
respostas

Cron Job Scheduling nestjs

Alguem tem um exemplo de criação de job no nestjs?

Estou tentando criar, mas esta dando erro na injeção de dependencias.

[Nest] 20428   - 04/05/2021 13:16:35   [ExceptionHandler] Nest can't resolve dependencies of the TasksService (?). Please make sure that the argument InsertCandlesService at index [0] is available in the TasksModule context.

Potential solutions:
- If InsertCandlesService is a provider, is it part of the current TasksModule?
- If InsertCandlesService is exported from a separate @Module, is that module imported within TasksModule?
  @Module({
    imports: [ /* the Module containing InsertCandlesService */ ]
  })
 +0ms
Error: Nest can't resolve dependencies of the TasksService (?). Please make sure that the argument InsertCandlesService at index [0] is available in the TasksModule 
context.

Potential solutions:
- If InsertCandlesService is a provider, is it part of the current TasksModule?
- If InsertCandlesService is exported from a separate @Module, is that module imported within TasksModule?
  @Module({
    imports: [ /* the Module containing InsertCandlesService */ ]
  })