fix missing graphData culling behavior

This commit is contained in:
Nick Krecklow
2020-05-12 22:10:38 -05:00
parent 7fd0117f74
commit a68e4d2460
2 changed files with 16 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class TimeTracker {
}
static getMaxGraphDataLength () {
return Math.ceil(config.graphDuration / config.rates.pingAll)
return Math.ceil(config.graphDuration / GRAPH_UPDATE_TIME_GAP)
}
static everyN (array, start, diff, adapter) {