From 36c4cb0da83e920447ad7839f7144012bc661ad6 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Wed, 16 Oct 2013 16:29:14 +0200 Subject: [PATCH] db_ido: Fix modified_{host,service}_attributes columns. --- lib/db_ido/hostdbobject.cpp | 3 +-- lib/db_ido/servicedbobject.cpp | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) 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; } -- 2.40.0