Skip to content

Commit

Permalink
fix bug as per suggestion at jlucansky#40
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Dyson authored and Andrew Dyson committed Sep 29, 2022
1 parent f822d63 commit c6cb275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Quartzmin/Controllers/JobsController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ IJobDetail BuildJob(JobBuilder builder)

if (jobModel.IsNew)
{
await Scheduler.AddJob(BuildJob(JobBuilder.Create().StoreDurably()), replace: false);
await Scheduler.AddJob(BuildJob(JobBuilder.Create().StoreDurably(true)), replace: false);
}
else
{
Expand Down

0 comments on commit c6cb275

Please sign in to comment.