From 00f05a8e7e0f092367ea66cb6dd2763c21f845fe Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Wed, 3 Aug 2016 16:15:22 +0200 Subject: [PATCH] DB IDO: Do not try to delete downtimes when using the session_token Missed it after modifying the comments. refs #12258 refs #12288 --- lib/db_ido/dbevents.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/db_ido/dbevents.cpp b/lib/db_ido/dbevents.cpp index 847a76016..b3444ed0c 100644 --- a/lib/db_ido/dbevents.cpp +++ b/lib/db_ido/dbevents.cpp @@ -464,7 +464,6 @@ void DbEvents::AddDowntimes(const Checkable::Ptr& checkable) void DbEvents::AddDowntime(const Downtime::Ptr& downtime) { std::vector queries; - RemoveDowntimeInternal(queries, downtime); AddDowntimeInternal(queries, downtime, false); DbObject::OnMultipleQueries(queries); }