Repository: stratos Updated Branches: refs/heads/master 9a2d8a92c -> c262a8050
partition add support added Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/6f9fea0f Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/6f9fea0f Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/6f9fea0f Branch: refs/heads/master Commit: 6f9fea0f9b3f023d40fae023e0eebc18a935b3d7 Parents: 81e4197 Author: Dakshika Jayathilaka <[email protected]> Authored: Mon Jan 26 17:25:41 2015 +0530 Committer: Dakshika Jayathilaka <[email protected]> Committed: Tue Jan 27 12:27:02 2015 +0530 ---------------------------------------------------------------------- .../console/controllers/configure/configure_requests.jag | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/6f9fea0f/components/org.apache.stratos.manager.console/console/controllers/configure/configure_requests.jag ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.manager.console/console/controllers/configure/configure_requests.jag b/components/org.apache.stratos.manager.console/console/controllers/configure/configure_requests.jag index 9b5b230..8f8a58f 100644 --- a/components/org.apache.stratos.manager.console/console/controllers/configure/configure_requests.jag +++ b/components/org.apache.stratos.manager.console/console/controllers/configure/configure_requests.jag @@ -30,6 +30,9 @@ include('/controllers/login/validator.jag'); try { switch (formtype) { + case "partitions": + formSubmit = util.RESTCalls.deployPartitionDefinition(formPayload); + break; case "autoscalingpolicies": formSubmit = util.RESTCalls.deployAutoscalePolicyDefinition(formPayload); break;
