Merge pull request #9044 from Icinga/bugfix/idb-dump-buf-lost

Icinga DB init. dump: flush both buffered states and state checksums
This commit is contained in:
Julian Brost 2021-11-04 12:26:28 +01:00 committed by GitHub
commit f976e351f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -313,8 +313,10 @@ void IcingaDB::UpdateAllConfigObjects()
}
}
if (states.size() > 2)
if (states.size() > 2) {
transaction.emplace_back(std::move(states));
transaction.emplace_back(std::move(statesChksms));
}
if (transaction.size() > 1) {
transaction.push_back({"EXEC"});