Properly handle service downtime referencing a deleted host

Only two out of three cases were handled properly by the code: host
downtimes referencing a deleted host and service downtimes referencing a
deleted service worked fine. However, if a service downtime references a
deleted host, `Host::GetByName()` returns `nullptr` which isn't
accounted for. Use `Service::GetByNamePair()` instead as this performs a
check for the host being null internally.
This commit is contained in:
Julian Brost 2021-01-07 17:23:29 +01:00
parent cb25be2d12
commit 0276c0b052
1 changed files with 2 additions and 4 deletions

View File

@ -75,12 +75,10 @@ void Downtime::OnAllConfigLoaded()
{
ObjectImpl<Downtime>::OnAllConfigLoaded();
Host::Ptr host = Host::GetByName(GetHostName());
if (GetServiceName().IsEmpty())
m_Checkable = host;
m_Checkable = Host::GetByName(GetHostName());
else
m_Checkable = host->GetServiceByShortName(GetServiceName());
m_Checkable = Service::GetByNamePair(GetHostName(), GetServiceName());
if (!m_Checkable)
BOOST_THROW_EXCEPTION(ScriptError("Downtime '" + GetName() + "' references a host/service which doesn't exist.", GetDebugInfo()));