فهرست منبع

修正不规范变量名

reghao 4 سال پیش
والد
کامیت
98cb145166
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      dmaster/src/main/java/cn/reghao/autodop/dmaster/app/service/impl/BuildDeployServiceImpl.java

+ 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)