We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18af008 commit 65c87f6Copy full SHA for 65c87f6
modules/dcache/src/main/java/org/dcache/pool/classic/ChecksumScanner.java
@@ -124,6 +124,9 @@ public void runIt() throws Exception
124
} catch (CacheException e) {
125
_log.warn("Checksum scanner failed for {}: {}", id, e.getMessage());
126
_badCount++;
127
+ } catch (IOException e) {
128
+ _log.error("Checksum scanner failed with IO error for {}: {}", id, e.getMessage());
129
+ _badCount++;
130
}
131
_totalCount++;
132
@@ -437,6 +440,7 @@ private void scanFiles(PnfsId[] repository)
437
440
} catch (IOException e) {
438
441
_log.error("Failed to verify the checksum of {} (skipping): {}",
439
442
id, e.getMessage());
443
444
445
_lastFileChecked = id;
446
0 commit comments