Cacti / plugin_mactrack

Mactrack Plugin for Cacti
GNU General Public License v2.0
12 stars 24 forks source link

fix dns resolving timeout #207

Closed xmacan closed 4 months ago

xmacan commented 4 months ago

finish resolving few minutes before php kills script. In code is:

if (is_numeric($max_run_duration)) { / let PHP a 5 minutes less than the rerun frequency / $max_run_duration = ($max_run_duration * 60) - 300; ini_set('max_execution_time', $max_run_duration); }

So I want to end script before this timeout

xmacan commented 4 months ago

Fix for #198