You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by li...@apache.org on 2020/03/31 13:09:09 UTC

[incubator-dolphinscheduler] branch dev updated: Remove invalid code (#2342)

This is an automated email from the ASF dual-hosted git repository.

lidongdai pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 4db2ac2  Remove invalid code (#2342)
4db2ac2 is described below

commit 4db2ac232a32d286164e1f33f030130d4696ed16
Author: BoYiZhang <39...@users.noreply.github.com>
AuthorDate: Tue Mar 31 21:08:59 2020 +0800

    Remove invalid code (#2342)
    
    Co-authored-by: zhanglong <zh...@ysstech.com>
    Co-authored-by: dailidong <da...@gmail.com>
---
 .../apache/dolphinscheduler/api/controller/ResourcesController.java    | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ResourcesController.java b/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ResourcesController.java
index 40effb6..1d83fce 100644
--- a/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ResourcesController.java
+++ b/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ResourcesController.java
@@ -154,8 +154,7 @@ public class ResourcesController extends BaseController{
             @ApiImplicitParam(name = "id", value = "RESOURCE_ID", required = true, dataType ="Int", example = "100"),
             @ApiImplicitParam(name = "type", value = "RESOURCE_TYPE", required = true, dataType ="ResourceType"),
             @ApiImplicitParam(name = "name", value = "RESOURCE_NAME", required = true, dataType ="String"),
-            @ApiImplicitParam(name = "description", value = "RESOURCE_DESC",  dataType ="String"),
-            @ApiImplicitParam(name = "file", value = "RESOURCE_FILE", required = true,dataType = "MultipartFile")
+            @ApiImplicitParam(name = "description", value = "RESOURCE_DESC",  dataType ="String")
     })
     @PostMapping(value = "/update")
     public Result updateResource(@ApiIgnore @RequestAttribute(value = Constants.SESSION_USER) User loginUser,