mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-23 14:41:27 +00:00
GracePeriod not Graceperiod
This commit is contained in:
parent
5fdc8514da
commit
993c69530e
1 changed files with 4 additions and 4 deletions
|
@ -1,16 +1,16 @@
|
|||
using NzbDrone.Common.Messaging;
|
||||
using NzbDrone.Common.Messaging;
|
||||
|
||||
namespace NzbDrone.Core.HealthCheck
|
||||
{
|
||||
public class HealthCheckFailedEvent : IEvent
|
||||
{
|
||||
public HealthCheck HealthCheck { get; private set; }
|
||||
public bool IsInStartupGraceperiod { get; private set; }
|
||||
public bool IsInStartupGracePeriod { get; private set; }
|
||||
|
||||
public HealthCheckFailedEvent(HealthCheck healthCheck, bool isInStartupGraceperiod)
|
||||
public HealthCheckFailedEvent(HealthCheck healthCheck, bool isInStartupGracePeriod)
|
||||
{
|
||||
HealthCheck = healthCheck;
|
||||
IsInStartupGraceperiod = isInStartupGraceperiod;
|
||||
IsInStartupGracePeriod = isInStartupGracePeriod;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue