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/12 10:38:44 UTC

ignite git commit: IGNITE-843 Fixed missing pointer on sorted table columns.

Repository: ignite
Updated Branches:
  refs/heads/ignite-843-rc2 8a7b7bb5a -> 9e4a30cbb


IGNITE-843 Fixed missing pointer on sorted table columns.


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

Branch: refs/heads/ignite-843-rc2
Commit: 9e4a30cbb7759f0a0f53c66c0f839d9b3e672d1a
Parents: 8a7b7bb
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Fri Feb 12 16:38:56 2016 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Fri Feb 12 16:38:56 2016 +0700

----------------------------------------------------------------------
 modules/control-center-web/src/main/js/serve/routes/admin.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/9e4a30cb/modules/control-center-web/src/main/js/serve/routes/admin.js
----------------------------------------------------------------------
diff --git a/modules/control-center-web/src/main/js/serve/routes/admin.js b/modules/control-center-web/src/main/js/serve/routes/admin.js
index e57410d..9bef81498 100644
--- a/modules/control-center-web/src/main/js/serve/routes/admin.js
+++ b/modules/control-center-web/src/main/js/serve/routes/admin.js
@@ -48,7 +48,7 @@ module.exports.factory = function(_, express, nodemailer, settings, mongo) {
                 if (errAccount)
                     return res.status(500).send(errAccount.message);
 
-                mongo.Space.find({owner: userId}, function(err, spaces) {
+                mongo.Space.find({owner: userId}, function(errSpace, spaces) {
                     _.forEach(spaces, (space) => {
                         mongo.Cluster.remove({space: space._id}).exec();
                         mongo.Cache.remove({space: space._id}).exec();