ignite-2.2.0 Update version.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/59ee8af5 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/59ee8af5 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/59ee8af5 Branch: refs/heads/ignite-3478 Commit: 59ee8af5ce8076a3c97ef69765075cbe9e5694d0 Parents: 55886b1 Author: Alexey Kuznetsov <[email protected]> Authored: Mon Oct 2 14:07:40 2017 +0700 Committer: Alexey Kuznetsov <[email protected]> Committed: Mon Oct 2 14:07:40 2017 +0700 ---------------------------------------------------------------------- .../frontend/app/modules/agent/AgentManager.service.js | 4 +++- .../web-console/frontend/app/modules/sql/sql.controller.js | 8 ++++---- modules/web-console/frontend/app/services/Version.service.js | 6 +++--- 3 files changed, 10 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/59ee8af5/modules/web-console/frontend/app/modules/agent/AgentManager.service.js ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/app/modules/agent/AgentManager.service.js b/modules/web-console/frontend/app/modules/agent/AgentManager.service.js index e4bde6f..20d2976 100644 --- a/modules/web-console/frontend/app/modules/agent/AgentManager.service.js +++ b/modules/web-console/frontend/app/modules/agent/AgentManager.service.js @@ -26,6 +26,8 @@ const State = { CONNECTED: 'CONNECTED' }; +const LAZY_QUERY_SINCE = [['2.1.4-p1', '2.2.0'], '2.2.1']; + class ConnectionState { constructor(cluster) { this.agents = []; @@ -499,7 +501,7 @@ export default class IgniteAgentManager { */ querySql(nid, cacheName, query, nonCollocatedJoins, enforceJoinOrder, replicatedOnly, local, pageSz, lazy) { if (this.available('2.0.0')) { - const task = this.available('2.1.4-p1') ? + const task = this.available(...LAZY_QUERY_SINCE) ? this.visorTask('querySqlX2', nid, cacheName, query, nonCollocatedJoins, enforceJoinOrder, replicatedOnly, local, pageSz, lazy) : this.visorTask('querySqlX2', nid, cacheName, query, nonCollocatedJoins, enforceJoinOrder, replicatedOnly, local, pageSz); http://git-wip-us.apache.org/repos/asf/ignite/blob/59ee8af5/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 420c4b9..5f06c1e 100644 --- a/modules/web-console/frontend/app/modules/sql/sql.controller.js +++ b/modules/web-console/frontend/app/modules/sql/sql.controller.js @@ -28,9 +28,9 @@ const ROW_IDX = {value: -2, type: 'java.lang.Integer', label: 'ROW_IDX'}; const NON_COLLOCATED_JOINS_SINCE = '1.7.0'; -const ENFORCE_JOIN_VERS = [['1.7.9', '1.8.0'], ['1.8.4', '1.9.0'], ['1.9.1']]; +const ENFORCE_JOIN_SINCE = [['1.7.9', '1.8.0'], ['1.8.4', '1.9.0'], '1.9.1']; -const LAZY_QUERY_VERS = ['2.1.4-p1']; +const LAZY_QUERY_SINCE = [['2.1.4-p1', '2.2.0'], '2.2.1']; const _fullColName = (col) => { const res = []; @@ -1367,7 +1367,7 @@ export default ['$rootScope', '$scope', '$http', '$q', '$timeout', '$interval', const cache = _.find($scope.caches, {name: paragraph.cacheName}); if (cache) - return !!_.find(cache.nodes, (node) => Version.since(node.version, ...ENFORCE_JOIN_VERS)); + return !!_.find(cache.nodes, (node) => Version.since(node.version, ...ENFORCE_JOIN_SINCE)); return false; }; @@ -1376,7 +1376,7 @@ export default ['$rootScope', '$scope', '$http', '$q', '$timeout', '$interval', const cache = _.find($scope.caches, {name: paragraph.cacheName}); if (cache) - return !!_.find(cache.nodes, (node) => Version.since(node.version, ...LAZY_QUERY_VERS)); + return !!_.find(cache.nodes, (node) => Version.since(node.version, ...LAZY_QUERY_SINCE)); return false; }; http://git-wip-us.apache.org/repos/asf/ignite/blob/59ee8af5/modules/web-console/frontend/app/services/Version.service.js ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/app/services/Version.service.js b/modules/web-console/frontend/app/services/Version.service.js index 8ae23d3..beb27fa 100644 --- a/modules/web-console/frontend/app/services/Version.service.js +++ b/modules/web-console/frontend/app/services/Version.service.js @@ -73,12 +73,12 @@ const compare = (a, b) => { export default class IgniteVersion { constructor() { - this.webConsole = '2.1.0'; + this.webConsole = '2.2.0'; this.supportedVersions = [ { - label: 'Ignite 2.1', - ignite: '2.1.0' + label: 'Ignite 2.x', + ignite: '2.2.0' }, { label: 'Ignite 2.0',
