Skip to content

Commit 78a9da3

Browse files
committed
Remove false positives from OrphanFilePipelineJob warnings
1 parent 1323530 commit 78a9da3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/OrphanFilePipelineJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ private void getOrphanFilesForDirectory(Set<Integer> knownExpDatas, Map<URI, Set
534534
getJob().getLogger().warn("WARNING: Extremely large log file: " + f.getPath() + ", " + FileUtils.byteCountToDisplaySize(f.length()));
535535
}
536536

537-
if (f.getName().endsWith(".rds"))
537+
if (f.getName().endsWith(".rds") && !f.getName().endsWith("hashing.rawCounts.rds"))
538538
{
539539
if (!dataMap.containsKey(f.toURI()))
540540
{

0 commit comments

Comments
 (0)