소스 검색

warn on timeout, no error

tags/v1.5.4
Jonathan Cobb 4 년 전
부모
커밋
726a29f7a1
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +3
    -2
      bubble-server/src/main/java/bubble/service/packer/PackerJob.java

+ 3
- 2
bubble-server/src/main/java/bubble/service/packer/PackerJob.java 파일 보기

@@ -332,9 +332,10 @@ public class PackerJob implements Callable<List<PackerImage>> {
} else {
final List<PackerImage> finalizedImages = computeDriver.finalizeIncompletePackerRun(commandResult, installType);
if (empty(finalizedImages)) {
return die("Error executing packer: exit status " + commandResult.getExitStatus());
log.warn("Error executing packer: exit status " + commandResult.getExitStatus());
} else {
images.addAll(finalizedImages);
}
images.addAll(finalizedImages);
}

setImagesRefs();


불러오는 중...
취소
저장