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/09 10:26:27 UTC

[28/51] [abbrv] 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/ace9ef73
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/ace9ef73
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/ace9ef73

Branch: refs/heads/ignite-843-rc3
Commit: ace9ef73a60a20ac088cdfc013801ded6328a68b
Parents: bdfa18f
Author: Andrey <an...@gridgain.com>
Authored: Mon Feb 8 18:02:27 2016 +0700
Committer: Andrey <an...@gridgain.com>
Committed: Mon Feb 8 18:02:27 2016 +0700

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


http://git-wip-us.apache.org/repos/asf/ignite/blob/ace9ef73/modules/control-center-web/src/main/js/serve/routes/agent.js
----------------------------------------------------------------------
diff --git a/modules/control-center-web/src/main/js/serve/routes/agent.js b/modules/control-center-web/src/main/js/serve/routes/agent.js
index 766b4bf..ce38bfd 100644
--- a/modules/control-center-web/src/main/js/serve/routes/agent.js
+++ b/modules/control-center-web/src/main/js/serve/routes/agent.js
@@ -84,7 +84,7 @@ module.exports.factory = function (_, express, apacheIgnite, fs, JSZip, settings
                     var host = req.hostname.match(/:/g) ? req.hostname.slice(0, req.hostname.indexOf(':')) : req.hostname;
 
                     prop.push('token=' + req.user.token);
-                    prop.push('server-uri=wss://' + host + ':' + settings.agentPort);
+                    prop.push('server-uri=wss://' + host + ':' + settings.agent.port);
                     prop.push('#Uncomment following options if needed:');
                     prop.push('#node-uri=http://localhost:8080');
                     prop.push('#driver-folder=./jdbc-drivers');