ソースを参照

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));
}



読み込み中…
キャンセル
保存