'Quartz.NET cront Trigger set at 23

I try to use Quart.NET scheduler for some job that are to reproduce every 5 second.
I use a CRON trigger set like: 0/5 0 0 ? * * *
The first time, when i start, the trigger was called.
Then the NEXT_FIRE_TIME will be set to the 23 of the day and not 5 second after.



Solution 1:[1]

You should use 1/5 0/1 * 1/1 * ? * It will work. More information on Cronmaker And Wiki Pedia

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Darshit Gandhi