You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by bi...@apache.org on 2016/12/07 07:49:35 UTC

kylin git commit: minor, update calculateCuboid API to POST

Repository: kylin
Updated Branches:
  refs/heads/yang22 8a42973d3 -> 43805bcd2


minor, update calculateCuboid API to POST


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/43805bcd
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/43805bcd
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/43805bcd

Branch: refs/heads/yang22
Commit: 43805bcd2c3bb49d5b1c433f6205927d36a7eaad
Parents: 8a42973
Author: Billy Liu <bi...@apache.org>
Authored: Wed Dec 7 15:49:17 2016 +0800
Committer: Billy Liu <bi...@apache.org>
Committed: Wed Dec 7 15:49:17 2016 +0800

----------------------------------------------------------------------
 .../main/java/org/apache/kylin/rest/controller/CubeController.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/43805bcd/server-base/src/main/java/org/apache/kylin/rest/controller/CubeController.java
----------------------------------------------------------------------
diff --git a/server-base/src/main/java/org/apache/kylin/rest/controller/CubeController.java b/server-base/src/main/java/org/apache/kylin/rest/controller/CubeController.java
index 8dce112..4c07f7c 100644
--- a/server-base/src/main/java/org/apache/kylin/rest/controller/CubeController.java
+++ b/server-base/src/main/java/org/apache/kylin/rest/controller/CubeController.java
@@ -652,7 +652,7 @@ public class CubeController extends BasicController {
      * @param aggregationGroupStr
      * @return number of cuboid, -1 if failed
      */
-    @RequestMapping(value = "aggregationgroups/cuboid", method = RequestMethod.GET)
+    @RequestMapping(value = "aggregationgroups/cuboid", method = RequestMethod.POST)
     @ResponseBody
     public long calculateCuboidCombination(@RequestBody String aggregationGroupStr) {
         AggregationGroup aggregationGroup = deserializeAggregationGroup(aggregationGroupStr);