mirror of https://github.com/Icinga/icinga2.git
Revert "API: Don't be so strict with the downtime start_time"
This reverts commit 3b7cf5b9b5
.
This commit is contained in:
parent
924b0c6f24
commit
8f3a1335dc
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue