From 4a64d4991b108b09da401afca8cce02e3c6aca16 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Sat, 14 Feb 2015 23:46:55 +0100 Subject: [PATCH] DB IDO: Fix {host,service}checks command_line value is "Object of type 'icinga::Array'" fixes #8438 --- lib/db_ido/dbevents.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db_ido/dbevents.cpp b/lib/db_ido/dbevents.cpp index 0fbc74835..5e5da592a 100644 --- a/lib/db_ido/dbevents.cpp +++ b/lib/db_ido/dbevents.cpp @@ -1325,7 +1325,7 @@ void DbEvents::AddServiceCheckHistory(const Checkable::Ptr& checkable, const Che fields1->Set("end_time_usec", time_bag_end.second); fields1->Set("command_object_id", checkable->GetCheckCommand()); fields1->Set("command_args", Empty); - fields1->Set("command_line", cr->GetCommand()); + fields1->Set("command_line", CompatUtility::GetCommandLine(checkable->GetCheckCommand())); fields1->Set("execution_time", Convert::ToString(execution_time)); fields1->Set("latency", Convert::ToString(Service::CalculateLatency(cr))); fields1->Set("return_code", cr->GetExitStatus());