Hangfire now dies gracefully when using CTRL+C rather than Stop button in Rider. Implemented one stream method for testing. Regenerated a few migrations due to oversight in index not taking account of library.
This commit is contained in:
parent
126fb57f4d
commit
9035b6cc4e
17 changed files with 156 additions and 41 deletions
|
|
@ -1,5 +1,6 @@
|
|||
using System.IO;
|
||||
using API.Interfaces.Services;
|
||||
using Hangfire;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace API.Services.Tasks
|
||||
|
|
@ -20,6 +21,7 @@ namespace API.Services.Tasks
|
|||
_logger = logger;
|
||||
}
|
||||
|
||||
[AutomaticRetry(Attempts = 3, LogEvents = false, OnAttemptsExceeded = AttemptsExceededAction.Fail)]
|
||||
public void Cleanup()
|
||||
{
|
||||
_logger.LogInformation("Cleaning temp directory");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue