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/03/03 13:31:11 UTC

[2/3] ignite git commit: IGNITE-843 Minor fix.

IGNITE-843 Minor fix.


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

Branch: refs/heads/ignite-2612
Commit: c56ac303f88c67ef9cf6eec53ea800050c940e3d
Parents: 35aa7eb
Author: AKuznetsov <ak...@gridgain.com>
Authored: Thu Mar 3 19:10:24 2016 +0700
Committer: AKuznetsov <ak...@gridgain.com>
Committed: Thu Mar 3 19:10:24 2016 +0700

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


http://git-wip-us.apache.org/repos/asf/ignite/blob/c56ac303/modules/control-center-web/src/main/js/serve/routes/domains.js
----------------------------------------------------------------------
diff --git a/modules/control-center-web/src/main/js/serve/routes/domains.js b/modules/control-center-web/src/main/js/serve/routes/domains.js
index 6aae98f..4cbf889 100644
--- a/modules/control-center-web/src/main/js/serve/routes/domains.js
+++ b/modules/control-center-web/src/main/js/serve/routes/domains.js
@@ -101,7 +101,7 @@ module.exports.factory = (_, express, mongo) => {
                             return mongo.Cache.update({_id: {$in: caches}}, {$addToSet: {domains: savedDomain._id}}, {multi: true}).exec();
                         })
                         .then(() => _updateCacheStore(cacheStoreChanges));
-                })
+                });
         };
 
         const _save = (domains, res) => {