(crawler) Even more lenient resyncing

This commit is contained in:
Viktor Lofgren 2023-12-25 01:44:18 +01:00
parent f18f82e229
commit f779f760c4

View File

@ -40,7 +40,7 @@ public class CrawlerWarcResynchronizer {
for (var item : reader) {
accept(item);
}
} catch (UncheckedIOException | IOException e) {
} catch (IOException e) {
logger.info(STR."Failed read full warc file \{tempFile}", e);
}
@ -49,7 +49,7 @@ public class CrawlerWarcResynchronizer {
for (var item : reader) {
recorder.resync(item);
}
} catch (UncheckedIOException | IOException e) {
} catch (IOException e) {
logger.info(STR."Failed read full warc file \{tempFile}", e);
}
}