Pārlūkot izejas kodu

修正不规范变量名

reghao 4 gadi atpakaļ
vecāks
revīzija
98cb145166

+ 2 - 2
dmaster/src/main/java/cn/reghao/autodop/dmaster/app/service/impl/BuildDeployServiceImpl.java

@@ -78,8 +78,8 @@ public class BuildDeployServiceImpl implements BuildDeployService {
             throw new Exception(appId + " 不存在");
         }
 
-        AppBuilder appIntegrate = new AppBuilder(app);
-        AppBuildSupplier supplier = new AppBuildSupplier(appIntegrate);
+        AppBuilder appBuilder = new AppBuilder(app);
+        AppBuildSupplier supplier = new AppBuildSupplier(appBuilder);
         log.info("{} 开始异步构建", appId);
         buildingService.refreshBeforeBuild(appId);
         CompletableFuture.supplyAsync(supplier, threadPool)