1
0
Fork 0

ui - fixed wrong merge of statistics information from different coordinators

This commit is contained in:
Frank Celler 2017-03-10 16:36:23 +01:00
parent 00bcb07624
commit c4a591abd2
2 changed files with 4 additions and 2 deletions

View File

@ -126,6 +126,8 @@ v3.2.alpha1 (2017-02-05)
v3.1.14 (2017-03-13)
--------------------
* ui - fixed wrong merge of statistics information from different coordinators
* ui - fixed issue #2316
* ui - fixed wrong protocol usage within encrypted environment

View File

@ -477,14 +477,14 @@ router.get("/coordshort", function(req, res) {
_.each(http, function(value) {
counter2 = 0;
_.each(stat[value], function(x) {
merged.http[value][counter] = merged.http[value][counter] + x;
merged.http[value][counter2] = merged.http[value][counter2] + x;
counter2++;
});
});
_.each(arrays, function(value) {
counter2 = 0;
_.each(stat[value], function(x) {
merged[value][counter] = merged[value][counter] + x;
merged[value][counter2] = merged[value][counter2] + x;
counter2++;
});
});