Repository: ignite Updated Branches: refs/heads/ignite-843-rc1 8cbd568f9 -> 8c76a4d78
IGNITE-843 Fixed error message. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/8c76a4d7 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/8c76a4d7 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/8c76a4d7 Branch: refs/heads/ignite-843-rc1 Commit: 8c76a4d78c6c095b17d8cd9a79eece33a0cf4e15 Parents: 8cbd568 Author: Andrey <[email protected]> Authored: Wed Oct 21 14:29:23 2015 +0700 Committer: Andrey <[email protected]> Committed: Wed Oct 21 14:29:23 2015 +0700 ---------------------------------------------------------------------- modules/control-center-web/src/main/js/routes/agent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/8c76a4d7/modules/control-center-web/src/main/js/routes/agent.js ---------------------------------------------------------------------- diff --git a/modules/control-center-web/src/main/js/routes/agent.js b/modules/control-center-web/src/main/js/routes/agent.js index 2d7fcfe..25830f3 100644 --- a/modules/control-center-web/src/main/js/routes/agent.js +++ b/modules/control-center-web/src/main/js/routes/agent.js @@ -26,7 +26,7 @@ function _client(req, res) { var client = agentManager.getAgentManager().findClient(req.currentUserId()); if (!client) { - res.status(503).send('Client not found'); + res.status(503).send('Connection to Ignite Web Agent is not established'); return null; }
