mirror of
https://github.com/Radarr/Radarr
synced 2025-02-22 06:11:09 +00:00
GracePeriod not Graceperiod
(cherry picked from commit 993c69530ed34460800f40ecf8a0b7bc9a2f7d48)
This commit is contained in:
parent
b7419c31df
commit
782a257779
1 changed files with 3 additions and 3 deletions
|
@ -5,12 +5,12 @@ namespace NzbDrone.Core.HealthCheck
|
||||||
public class HealthCheckFailedEvent : IEvent
|
public class HealthCheckFailedEvent : IEvent
|
||||||
{
|
{
|
||||||
public HealthCheck HealthCheck { get; private set; }
|
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;
|
HealthCheck = healthCheck;
|
||||||
IsInStartupGraceperiod = isInStartupGraceperiod;
|
IsInStartupGracePeriod = isInStartupGracePeriod;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue