Fix Service's name

This commit is contained in:
Jean Flach 2018-12-17 13:47:50 +01:00 committed by Michael Friedrich
parent 037357aea5
commit 03a61347cd
1 changed files with 3 additions and 0 deletions

View File

@ -318,6 +318,9 @@ bool RedisWriter::PrepareObject(const ConfigObject::Ptr& object, Dictionary::Ptr
checksums->Set("host_id", GetObjectIdentifier(service->GetHost()));
attributes->Set("display_name", service->GetDisplayName());
// Overwrite name here, `object->name` is 'HostName!ServiceName' but we only want the name of the Service
attributes->Set("name", service->GetShortName());
groups = service->GetGroups();
getGroup = &::GetObjectByName<ServiceGroup>;
} else {