mirror of https://gitee.com/bigwinds/arangodb
ui - fixed wrong merge of statistics information from different coordinators
This commit is contained in:
parent
00bcb07624
commit
c4a591abd2
|
@ -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
|
||||
|
|
|
@ -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++;
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue