Bugfix: use short names in servicegroup objects.

This commit is contained in:
Gunnar Beutner 2013-02-09 01:49:45 +01:00
parent 3a3d031835
commit 4fcda6699f
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ void CompatComponent::StatusTimerHandler(void)
vector<String> sglist;
BOOST_FOREACH(const Service::Ptr& service, sg->GetMembers()) {
sglist.push_back(service->GetHost()->GetName());
sglist.push_back(service->GetName());
sglist.push_back(service->GetShortName());
}
DumpStringList(objectfp, sglist);