Skip to content

Commit

Permalink
chore: rental report processing every 2 min
Browse files Browse the repository at this point in the history
  • Loading branch information
ychung-mot committed Jun 19, 2024
1 parent 490d1e7 commit 7bbe55d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/StrDss.Hangfire/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
app.UseHangfireDashboard();

// make sure this is after app.UseHangfireDashboard()
RecurringJob.AddOrUpdate<HangfireJobs>("Process Rental Listing Report", job => job.ProcessRentalListingReports(), "*/3 * * * *");
RecurringJob.AddOrUpdate<HangfireJobs>("Process Rental Listing Report", job => job.ProcessRentalListingReports(), "*/2 * * * *");
RecurringJob.AddOrUpdate<HangfireJobs>("Process Takedown Request Batch Emails", job => job.ProcessTakedownRequestBatchEmails(), "50 6 * * *");

app.Run();

0 comments on commit 7bbe55d

Please sign in to comment.