Browse Source

Merge branch 'hotfix-35274-20230321-dsx' into test

dsx 2 years ago
parent
commit
6e9b74b1eb

+ 1 - 1
src/main/java/com/fdkankan/contro/controller/SceneFileController.java

@@ -116,7 +116,7 @@ public class SceneFileController{
 
     @GetMapping("copyDataAndBuild")
     public ResultData copyDataAndBuild(@RequestParam(value = "dataSource") String dataSource,@RequestParam(value = "sceneVer") String sceneVer,
-                                       @RequestParam(value = "sourceBucket",required = false) String sourceBucket) throws Exception {
+                                       @RequestParam(value = "sourceBucket") String sourceBucket) throws Exception {
         return sceneFileBuildService.copyDataAndBuild(sourceBucket,dataSource ,sceneVer);
     }
 }