diff --git a/lib/icinga/apiactions.cpp b/lib/icinga/apiactions.cpp index f4a5a6f8a..9d7edbcc6 100644 --- a/lib/icinga/apiactions.cpp +++ b/lib/icinga/apiactions.cpp @@ -337,7 +337,7 @@ Dictionary::Ptr ApiActions::ScheduleDowntime(const ConfigObject::Ptr& object, String comment = HttpUtility::GetLastParameter(params, "comment"); double startTime = HttpUtility::GetLastParameter(params, "start_time"); double endTime = HttpUtility::GetLastParameter(params, "end_time"); - double now = Utility::GetTime() - 10; //Take a request delay into account. + double now = Utility::GetTime(); if (author.IsEmpty() || comment.IsEmpty()) return ApiActions::CreateResult(400, "Options 'author' and 'comment' must not be empty");