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