mirror of
https://github.com/Icinga/icinga2.git
synced 2025-08-30 22:18:17 +02:00
PR #8879 backported a call to that function as is without considering the different signature of that function between 2.12 and 2.13+. master: static void RemoveDowntime( const String& id, // downtime->GetName() bool includeChildren, // false bool cancelled, // true bool expired = false, const String& removedBy = "", const MessageOrigin::Ptr& origin = nullptr ); support/2.12 without this commit: static void RemoveDowntime( const String& id, // downtime->GetName() bool cancelled, // false bool expired = false, // true const MessageOrigin::Ptr& origin = nullptr ); support/2.12 with this commit: static void RemoveDowntime( const String& id, // downtime->GetName() bool cancelled, // true bool expired = false, const MessageOrigin::Ptr& origin = nullptr );