mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-30 17:24:18 +02:00
parent
d92a5e846b
commit
11f621df30
@ -15,6 +15,9 @@ next (will be 1.9.1)
|
||||
* FIX: DataList-backed fields failed to validate (#2475)
|
||||
* FIX: No Host list limit when adding a single service globally (#2481)
|
||||
|
||||
### Configuration Baskets
|
||||
* FIX: failed to export Baskets with Service Sets (#2488)
|
||||
|
||||
### DB Schema
|
||||
* FIX: applying DB Schema migrations failed on PostgreSQL (#2482)
|
||||
|
||||
|
@ -140,10 +140,13 @@ class IcingaServiceSet extends IcingaObject implements ExportInterface
|
||||
public function export()
|
||||
{
|
||||
if ($this->get('host_id')) {
|
||||
return $this->exportSetOnHost();
|
||||
$result = $this->exportSetOnHost();
|
||||
} else {
|
||||
return $this->exportTemplate();
|
||||
$result = $this->exportTemplate();
|
||||
}
|
||||
|
||||
unset($result->uuid);
|
||||
return $result;
|
||||
}
|
||||
|
||||
protected function exportSetOnHost()
|
||||
|
Loading…
x
Reference in New Issue
Block a user