hotfix: blobstorage migration gz fix

This commit is contained in:
Dominique Eifländer 2024-02-29 12:14:03 +01:00
parent 0c10bf3c75
commit 68707c3fa7

View File

@ -141,7 +141,7 @@ public class UncompressedFilesMigrationService {
} while (!keysToMigrate.isEmpty() && attempts <= 3);
if (!keysToMigrate.isEmpty()) {
throw new RuntimeException("Failed to migrate all azure blob keys. Remaining: " + keysToMigrate.size());
log.error("Failed to migrate {},", keysToMigrate.size());
}
}
@ -191,6 +191,7 @@ public class UncompressedFilesMigrationService {
log.info("Key: {} migrated successfully", key);
} catch (Exception e) {
log.error("Failed to migrate {}", key, e);
failedKeys.add(key);
}
}