Repository: incubator-ignite Updated Branches: refs/heads/ignite-961-promise 895674726 -> e91e38aad
#ignite-961-promise: add close method for query. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/e91e38aa Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/e91e38aa Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/e91e38aa Branch: refs/heads/ignite-961-promise Commit: e91e38aad48a8cdcdf66e6d9f372272b2f0b8d18 Parents: 8956747 Author: ivasilinets <ivasilin...@gridgain.com> Authored: Tue Jul 14 17:23:21 2015 +0300 Committer: ivasilinets <ivasilin...@gridgain.com> Committed: Tue Jul 14 17:23:21 2015 +0300 ---------------------------------------------------------------------- examples/src/main/js/cache-query-example.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e91e38aa/examples/src/main/js/cache-query-example.js ---------------------------------------------------------------------- diff --git a/examples/src/main/js/cache-query-example.js b/examples/src/main/js/cache-query-example.js index 2703464..9256079 100644 --- a/examples/src/main/js/cache-query-example.js +++ b/examples/src/main/js/cache-query-example.js @@ -83,6 +83,7 @@ main = function() { console.log(">>> People with salaries between 0 and 2000 (queried with SQL query): " + JSON.stringify(fullRes)); + //Destroying cache on the end of the example. return ignite.destroyCache(cacheName); }