From: Michael Friedrich Date: Wed, 16 Oct 2013 14:29:14 +0000 (+0200) Subject: db_ido: Fix modified_{host,service}_attributes columns. X-Git-Tag: v0.0.3~87 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36c4cb0da83e920447ad7839f7144012bc661ad6;p=icinga2 db_ido: Fix modified_{host,service}_attributes columns. --- diff --git a/lib/db_ido/hostdbobject.cpp b/lib/db_ido/hostdbobject.cpp index 145787ec6..d456ca580 100644 --- a/lib/db_ido/hostdbobject.cpp +++ b/lib/db_ido/hostdbobject.cpp @@ -172,13 +172,12 @@ Dictionary::Ptr HostDbObject::GetStatusFields(void) const fields->Set("failure_prediction_enabled", Empty); fields->Set("process_performance_data", attrs->Get("process_performance_data")); fields->Set("obsess_over_host", Empty); - fields->Set("modified_host_attributes", Empty); + fields->Set("modified_host_attributes", attrs->Get("modified_attributes")); fields->Set("event_handler", attrs->Get("event_handler")); fields->Set("check_command", attrs->Get("check_command")); fields->Set("normal_check_interval", attrs->Get("check_interval")); fields->Set("retry_check_interval", attrs->Get("retry_interval")); fields->Set("check_timeperiod_object_id", service->GetCheckPeriod()); - fields->Set("modified_attributes", attrs->Get("modified_attributes")); } else { fields->Set("has_been_checked", 0); diff --git a/lib/db_ido/servicedbobject.cpp b/lib/db_ido/servicedbobject.cpp index 5bbdfc1f8..d0ae59921 100644 --- a/lib/db_ido/servicedbobject.cpp +++ b/lib/db_ido/servicedbobject.cpp @@ -197,7 +197,7 @@ Dictionary::Ptr ServiceDbObject::GetStatusFields(void) const fields->Set("normal_check_interval", attrs->Get("check_interval")); fields->Set("retry_check_interval", attrs->Get("retry_interval")); fields->Set("check_timeperiod_object_id", service->GetCheckPeriod()); - fields->Set("modified_attributes", attrs->Get("modified_attributes")); + fields->Set("modified_service_attributes", attrs->Get("modified_attributes")); return fields; }