Web Console: minor fix.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/92bce6ec Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/92bce6ec Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/92bce6ec Branch: refs/heads/ignite-3477-master Commit: 92bce6ec9cdfa3ed7184b055d07be8efc87dbeb6 Parents: fbb9940 Author: Alexey Kuznetsov <[email protected]> Authored: Tue Mar 21 11:23:18 2017 +0700 Committer: Alexey Kuznetsov <[email protected]> Committed: Tue Mar 21 11:23:18 2017 +0700 ---------------------------------------------------------------------- modules/web-console/frontend/app/modules/sql/sql.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/92bce6ec/modules/web-console/frontend/app/modules/sql/sql.controller.js ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/app/modules/sql/sql.controller.js b/modules/web-console/frontend/app/modules/sql/sql.controller.js index a3a5a5f..075bd55 100644 --- a/modules/web-console/frontend/app/modules/sql/sql.controller.js +++ b/modules/web-console/frontend/app/modules/sql/sql.controller.js @@ -154,7 +154,7 @@ class Paragraph { while (_.nonNil(cause)) { if (_.nonEmpty(cause.className) && - _.includes(['SQLException', 'JdbcSQLException'], JavaTypes.shortClassName(cause.className))) { + _.includes(['SQLException', 'JdbcSQLException', 'QueryCancelledException'], JavaTypes.shortClassName(cause.className))) { this.error.message = cause.message; break;
