Skip to content

Commit f847a2f

Browse files
authored
Merge pull request #125 from niksite/master
Fixed "Dashboard display NaN for Pool and Utilization" issue.
2 parents 23174cb + f4624f7 commit f847a2f

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)