mirror of
https://github.com/Readarr/Readarr
synced 2026-04-19 11:20:58 +02:00
Fixed: Manually triggering Check Health will now also run health checks that normally only run on startup.
This commit is contained in:
parent
6e179839d9
commit
a058333f65
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ public void HandleAsync(ApplicationStartedEvent message)
|
|||
|
||||
public void Execute(CheckHealthCommand message)
|
||||
{
|
||||
PerformHealthCheck(c => c.CheckOnSchedule);
|
||||
PerformHealthCheck(c => message.Manual || c.CheckOnSchedule);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue