1
0
Fork 0

fixed jslint warning

This commit is contained in:
Jan Steemann 2014-05-13 18:18:32 +02:00
parent eeedb022d0
commit 684bc82a5f
1 changed files with 2 additions and 2 deletions

View File

@ -653,13 +653,13 @@ actions.defineHttp({
if (cluster.isCoordinator() && !req.parameters.hasOwnProperty("DBserver")) {
filterString += " filter u.clusterId == @serverId";
bind["serverId"] = cluster.coordinatorId();
bind.serverId = cluster.coordinatorId();
}
var returnValue = " return u";
if (figures) {
returnValue = " return {name: @name, time : u.time, server : {uptime : u.server.uptime} ";
bind["name"] = DBserver || "";
bind.name = DBserver || "";
var groups = {};
figures.forEach(function(f) {