Merge pull request #7985 from Icinga/bugfix/icingadb-sticky-ack

IcingaDB::SerializeState(): include whether an ack is sticky
This commit is contained in:
Noah Hilverling 2020-04-22 17:15:25 +02:00 committed by GitHub
commit af7768944a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1877,7 +1877,7 @@ Dictionary::Ptr IcingaDB::SerializeState(const Checkable::Ptr& checkable)
attrs->Set("is_reachable", checkable->IsReachable());
attrs->Set("is_flapping", checkable->IsFlapping());
attrs->Set("is_acknowledged", checkable->IsAcknowledged());
attrs->Set("acknowledgement", checkable->GetAcknowledgement());
if (checkable->IsAcknowledged()) {
Timestamp entry = 0;
Comment::Ptr AckComment;