Skip to content

Commit

Permalink
Fixed "Dashboard display NaN for Pool and Utilization" issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Panov committed Jul 31, 2016
1 parent 23174cb commit f4624f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mrq/dashboard/static/js/views/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ define(["jquery", "underscore", "views/generic/page", "models", "moment", "circl
var doneJobs = 0;

for (var i in workers) {
poolSize += workers[i].config.gevent
poolSize += workers[i].config.greenlets
currentJobs += workers[i].jobs.length
doneJobs += workers[i].done_jobs
}
Expand Down

0 comments on commit f4624f7

Please sign in to comment.