|
|
|
@ -5,12 +5,12 @@ 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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|