1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00

fix error on empty metrics

This commit is contained in:
sveisvei 2016-10-27 20:51:39 +02:00
parent fd0ac35226
commit 2c768200c9

View File

@ -1,4 +1,5 @@
'use strict';
const POLL_INTERVAL = 10000;
module.exports = class UnleashClientMetrics {
@ -14,7 +15,9 @@ module.exports = class UnleashClientMetrics {
addMetrics (metrics) {
metrics.forEach(m => this.metrics.push(m));
this.highestIdSeen = this.metrics[this.metrics.length - 1].id;
if (this.metrics && this.metrics.length > 0) {
this.highestIdSeen = this.metrics[this.metrics.length - 1].id;
}
}
startPoller () {