Ver a proveniência

allow small jar files during tests

tags/v1.4.49^0
Jonathan Cobb há 3 anos
ascendente
cometimento
4e26850d27
1 ficheiros alterados com 1 adições e 1 eliminações
  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 Ver ficheiro

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



Carregando…
Cancelar
Guardar