mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Release MySQL locks when they are not used anymore
This commit is contained in:
@@ -108,6 +108,7 @@ if ($config['distributed_poller'] === true) {
|
|||||||
foreach (dbFetch("SELECT * FROM `devices` WHERE status = 1 AND disabled = 0 $where ORDER BY device_id DESC") as $device) {
|
foreach (dbFetch("SELECT * FROM `devices` WHERE status = 1 AND disabled = 0 $where ORDER BY device_id DESC") as $device) {
|
||||||
if (dbGetLock('discovering.' . $device['device_id'])) {
|
if (dbGetLock('discovering.' . $device['device_id'])) {
|
||||||
discover_device($device, $options);
|
discover_device($device, $options);
|
||||||
|
dbReleaseLock('discovering.' . $device['device_id']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -114,6 +114,7 @@ foreach (dbFetch($query) as $device) {
|
|||||||
poll_device($device, $options);
|
poll_device($device, $options);
|
||||||
RunRules($device['device_id']);
|
RunRules($device['device_id']);
|
||||||
echo "\r\n";
|
echo "\r\n";
|
||||||
|
dbReleaseLock('polling.' . $device['device_id']);
|
||||||
}
|
}
|
||||||
$polled_devices++;
|
$polled_devices++;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user