Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E0FF21820A for ; Mon, 8 Feb 2016 11:02:44 +0000 (UTC) Received: (qmail 9241 invoked by uid 500); 8 Feb 2016 11:02:44 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 9205 invoked by uid 500); 8 Feb 2016 11:02:44 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 9196 invoked by uid 99); 8 Feb 2016 11:02:44 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2016 11:02:44 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9B32BE00A0; Mon, 8 Feb 2016 11:02:44 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: anovikov@apache.org To: commits@ignite.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: ignite git commit: IGNITE-843 Minor fix. Date: Mon, 8 Feb 2016 11:02:44 +0000 (UTC) Repository: ignite Updated Branches: refs/heads/ignite-843-rc2 bdfa18f9a -> ace9ef73a 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-rc2 Commit: ace9ef73a60a20ac088cdfc013801ded6328a68b Parents: bdfa18f Author: Andrey Authored: Mon Feb 8 18:02:27 2016 +0700 Committer: Andrey 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');