mirror of https://github.com/Icinga/icinga2.git
Fix missing ( )
This commit is contained in:
parent
07823c4b90
commit
6fd6f74b0f
|
@ -152,7 +152,7 @@ void RedisWriter::UpdateAllConfigObjects()
|
|||
}
|
||||
|
||||
bulkCounter++;
|
||||
if (!bulkCounter % 100) {
|
||||
if (!(bulkCounter % 100)) {
|
||||
for (auto& kv : statements) {
|
||||
if (!kv.second.empty()) {
|
||||
kv.second.insert(kv.second.begin(), {"HMSET", kv.first});
|
||||
|
|
Loading…
Reference in New Issue