1

I have scheduled task configured using Quartz.net in asp.net core application. I did my implementation as mentioned in this article Creating a Quartz.NET hosted service with ASP.NET Core

When the scheduled task starts it runs for 10-15 mins and its shutting down. In the log file it mentioned as follows.

Quartz.Core.QuartzScheduler|INFO|Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED shutting down.
Quartz.Core.QuartzScheduler|INFO|Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED paused.

I changed the IIS application pool settings as mention in this questionIIS Changes but its not worked either. I am using .net core 2.1 version

udaya726
  • 1,010
  • 6
  • 21
  • 41

1 Answers1

1

I figured out the issue. I installed the Application Initialization module via the Server Manager. The module under Server Roles -> Web Server -> Application Developer -> Application Initialization. After that I made the changes as mentioned in IIS Changes

udaya726
  • 1,010
  • 6
  • 21
  • 41