Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions core/resources/module.xml

This file was deleted.

9 changes: 0 additions & 9 deletions core/src/org/labkey/core/admin/CopyFileRootPipelineJob.java
Original file line number Diff line number Diff line change
Expand Up @@ -321,15 +321,6 @@ private TaskStatus copyFiles(Path sourceDir, Path destDir, List<Long> lastStatTi
setStatus(TaskStatus.running, "Copying files");
info("Copying file '" + pathString + "'");

if (matchesCopyFailureSimulatorRegex("FileRootCopyExpectedFailureSimulator", sourceChild.getFileName().toString()))
{
throw new IOException("Simulating an I/O failure copying " + sourceChild);
}
if (matchesCopyFailureSimulatorRegex("FileRootCopyUnexpectedFailureSimulator", sourceChild.getFileName().toString()))
{
throw new NullPointerException("Simulating an unexpected error copying " + sourceChild);
}

long sourceSize = Files.size(sourceChild);
boolean retainExisting = false;

Expand Down