Skip to content

Commit f4624f7

Browse files
author
Nikolay Panov
committed
Fixed "Dashboard display NaN for Pool and Utilization" issue.
#111
1 parent 23174cb commit f4624f7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mrq/dashboard/static/js/views/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ define(["jquery", "underscore", "views/generic/page", "models", "moment", "circl
2121
var doneJobs = 0;
2222

2323
for (var i in workers) {
24-
poolSize += workers[i].config.gevent
24+
poolSize += workers[i].config.greenlets
2525
currentJobs += workers[i].jobs.length
2626
doneJobs += workers[i].done_jobs
2727
}

0 commit comments

Comments
 (0)