You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2016/02/16 16:14:27 UTC

[10/50] ignite git commit: IGNITE-843 Minor ES6 style fixes.

IGNITE-843 Minor ES6 style fixes.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/82d7a387
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/82d7a387
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/82d7a387

Branch: refs/heads/ignite-843-rc3
Commit: 82d7a3873245e5dad2ea731ea06b85fc7e5dcf21
Parents: 055d2a9
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Mon Feb 15 15:45:21 2016 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Mon Feb 15 15:45:21 2016 +0700

----------------------------------------------------------------------
 modules/control-center-web/src/main/js/serve/routes/igfs.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/82d7a387/modules/control-center-web/src/main/js/serve/routes/igfs.js
----------------------------------------------------------------------
diff --git a/modules/control-center-web/src/main/js/serve/routes/igfs.js b/modules/control-center-web/src/main/js/serve/routes/igfs.js
index eb9b877..b10e5ac 100644
--- a/modules/control-center-web/src/main/js/serve/routes/igfs.js
+++ b/modules/control-center-web/src/main/js/serve/routes/igfs.js
@@ -48,9 +48,9 @@ module.exports.factory = function(_, express, mongo) {
                 .then(clusters => {
                     result.clusters = clusters;
 
-                    return  mongo.Igfs.find({space: {$in: result.spacesIds}}).sort('name').exec();
+                    return mongo.Igfs.find({space: {$in: result.spacesIds}}).sort('name').exec();
                 })
-                .then(igfss => {
+                .then((igfss) => {
                     _.forEach(igfss, (igfs) => {
                         // Remove deleted clusters.
                         igfs.clusters = _.filter(igfs.clusters, (clusterId) => {