|
|
@@ -47,7 +47,7 @@ public class AppDeployServiceImpl implements AppDeployService {
|
|
|
private final MachineQuery machineQuery;
|
|
|
private final AppBuildQuery appBuildQuery;
|
|
|
private final AppDeployQuery appDeployQuery;
|
|
|
- private SysMessageService sysMessageService;
|
|
|
+ private final SysMessageService sysMessageService;
|
|
|
|
|
|
public AppDeployServiceImpl(AppDeployConfigRepository deployConfigRepository, AppDeployingRepository deployingRepository,
|
|
|
DeployLogRepository deployLogRepository, BuildDeployNotify buildDeployNotify,
|
|
|
@@ -348,7 +348,7 @@ public class AppDeployServiceImpl implements AppDeployService {
|
|
|
}
|
|
|
|
|
|
String title = "App Not Exist";
|
|
|
- String content = String.format("%s -> %s not exist", machineIpv4, appId);
|
|
|
+ String content = String.format("%s not exist on node %s", appId, machineIpv4);
|
|
|
sysMessageService.putSysMessage(title, content);
|
|
|
}
|
|
|
}
|