瀏覽代碼

allow small jar files during tests

tags/v1.4.49^0
Jonathan Cobb 3 年之前
父節點
當前提交
4e26850d27
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      bubble-server/src/main/java/bubble/service/backup/BackupService.java

+ 1
- 1
bubble-server/src/main/java/bubble/service/backup/BackupService.java 查看文件

@@ -135,7 +135,7 @@ public class BackupService extends SimpleDaemon {
final String home = HOME_DIR;

final File jarFile = configuration.getBubbleJar();;
if (!jarFile.exists() || jarFile.length() < 10*Bytes.MB) {
if (!jarFile.exists() || (jarFile.length() < 10*Bytes.MB && !configuration.testMode())) {
return die("backup: jarFile not found or too small: "+abs(jarFile));
}



Loading…
取消
儲存