You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by an...@apache.org on 2015/07/17 11:41:24 UTC

[4/4] incubator-ignite git commit: # ignite-1121 Minor fix.

# ignite-1121 Minor fix.


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

Branch: refs/heads/ignite-1121
Commit: 033566ee471a7f75e0c1a2bd1b8e7d683be97731
Parents: a89075d
Author: Andrey <an...@gridgain.com>
Authored: Fri Jul 17 16:42:03 2015 +0700
Committer: Andrey <an...@gridgain.com>
Committed: Fri Jul 17 16:42:03 2015 +0700

----------------------------------------------------------------------
 modules/web-control-center/nodejs/app.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/033566ee/modules/web-control-center/nodejs/app.js
----------------------------------------------------------------------
diff --git a/modules/web-control-center/nodejs/app.js b/modules/web-control-center/nodejs/app.js
index 5572033..cdbf7ea 100644
--- a/modules/web-control-center/nodejs/app.js
+++ b/modules/web-control-center/nodejs/app.js
@@ -33,7 +33,7 @@ var summary = require('./routes/summary');
 var adminRouter = require('./routes/admin');
 var profileRouter = require('./routes/profile');
 var sqlRouter = require('./routes/sql');
-var agentManager = require('./agents/agentManager');
+var agentManager = require('./agents/agent-manager');
 
 var passport = require('passport');
 
@@ -152,6 +152,6 @@ app.use(function (err, req, res) {
     });
 });
 
-agentManager.startServer();
+agentManager.getOrCreate();
 
 module.exports = app;