FIX: updateDescribeGraph() is disabled by default (too slow on low-end machines)
This commit is contained in:
@@ -118,8 +118,10 @@ function updateDescribeGraph() {
|
||||
console.log('updated graph');
|
||||
});
|
||||
}
|
||||
updateDescribeGraph();
|
||||
setInterval(updateDescribeGraph, 120000);
|
||||
if (config.enableUpdateDescribeGraph) {
|
||||
updateDescribeGraph();
|
||||
setInterval(updateDescribeGraph, 120000);
|
||||
}
|
||||
|
||||
// ######################## ROUTES ########################
|
||||
|
||||
|
||||
Reference in New Issue
Block a user