Icinga DB init. dump: flush both buffered states and state checksums

not to dump x states, but only x - (x % bulk) state checksums.
This commit is contained in:
Alexander A. Klimov 2021-10-21 13:49:24 +02:00
parent a7a2f4bed0
commit d8b4768471
1 changed files with 3 additions and 1 deletions

View File

@ -310,8 +310,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"});