This is an automated email from the ASF dual-hosted git repository. kimmking pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/shardingsphere-elasticjob-ui.git
commit c45a2c7cdf3d469aab88b73c54222918a816e61e Author: menghaoranss <[email protected]> AuthorDate: Thu Jul 23 17:14:10 2020 +0800 Remove useless import --- .../elasticjob/cloud/ui/web/controller/CloudAppController.java | 7 ------- .../cloud/ui/web/controller/CloudOperationController.java | 4 +--- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/cloud/ui/web/controller/CloudAppController.java b/shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/cloud/ui/web/controller/CloudAppController.java index 956a493..fe933c3 100644 --- a/shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/cloud/ui/web/controller/CloudAppController.java +++ b/shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/cloud/ui/web/controller/CloudAppController.java @@ -22,19 +22,12 @@ import org.apache.mesos.Protos.SlaveID; import org.apache.shardingsphere.elasticjob.cloud.config.pojo.CloudJobConfigurationPOJO; import org.apache.shardingsphere.elasticjob.cloud.scheduler.config.app.CloudAppConfigurationService; import org.apache.shardingsphere.elasticjob.cloud.scheduler.config.app.pojo.CloudAppConfigurationPOJO; -import org.apache.shardingsphere.elasticjob.cloud.scheduler.config.job.CloudJobConfigurationService; import org.apache.shardingsphere.elasticjob.cloud.scheduler.exception.AppConfigurationException; -import org.apache.shardingsphere.elasticjob.cloud.scheduler.mesos.MesosStateService; import org.apache.shardingsphere.elasticjob.cloud.scheduler.mesos.MesosStateService.ExecutorStateInfo; import org.apache.shardingsphere.elasticjob.cloud.scheduler.producer.ProducerManager; -import org.apache.shardingsphere.elasticjob.cloud.scheduler.state.disable.app.DisableAppService; import org.apache.shardingsphere.elasticjob.cloud.ui.service.CloudServiceFactory; -import org.apache.shardingsphere.elasticjob.cloud.ui.util.SessionRegistryCenterConfiguration; import org.apache.shardingsphere.elasticjob.cloud.ui.web.response.ResponseResult; import org.apache.shardingsphere.elasticjob.cloud.ui.web.response.ResponseResultUtil; -import org.apache.shardingsphere.elasticjob.infra.exception.JobSystemException; -import org.apache.shardingsphere.elasticjob.reg.base.CoordinatorRegistryCenter; -import org.codehaus.jettison.json.JSONException; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; diff --git a/shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/cloud/ui/web/controller/CloudOperationController.java b/shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/cloud/ui/web/controller/CloudOperationController.java index bb26629..ca6ec0e 100644 --- a/shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/cloud/ui/web/controller/CloudOperationController.java +++ b/shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/cloud/ui/web/controller/CloudOperationController.java @@ -23,7 +23,6 @@ import lombok.extern.slf4j.Slf4j; import org.apache.shardingsphere.elasticjob.cloud.scheduler.mesos.MesosStateService; import org.apache.shardingsphere.elasticjob.cloud.scheduler.mesos.ReconcileService; import org.apache.shardingsphere.elasticjob.reg.base.CoordinatorRegistryCenter; -import org.codehaus.jettison.json.JSONException; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; @@ -88,10 +87,9 @@ public final class CloudOperationController { * Get sandbox of the cloud job by app name. * @param appName application name * @return sandbox info - * @throws JSONException parse json exception */ @GetMapping("/sandbox") - public Collection<Map<String, String>> sandbox(@RequestParam("appName") final String appName) throws JSONException { + public Collection<Map<String, String>> sandbox(@RequestParam("appName") final String appName) { Preconditions.checkArgument(!Strings.isNullOrEmpty(appName), "Lack param 'appName'"); return mesosStateService.sandbox(appName); }
