diff --git a/core/resources/module.xml b/core/resources/module.xml
deleted file mode 100644
index c1e2105b2fa..00000000000
--- a/core/resources/module.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- true
- During a migration from one file root to another (say, from local to cloud-based storage), simulate an I/O failure for files that match this regular expression. Note that this is a Java regular expression, not a file wildcard
-
- ADMIN
-
-
-
- true
- During a migration from one file root to another (say, from local to cloud-based storage), simulate an unexpected type of failure for files that match this regular expression. Note that this is a Java regular expression, not a file wildcard
-
- ADMIN
-
-
-
-
\ No newline at end of file
diff --git a/core/src/org/labkey/core/admin/CopyFileRootPipelineJob.java b/core/src/org/labkey/core/admin/CopyFileRootPipelineJob.java
index f583a4a2956..1e6a385cebb 100644
--- a/core/src/org/labkey/core/admin/CopyFileRootPipelineJob.java
+++ b/core/src/org/labkey/core/admin/CopyFileRootPipelineJob.java
@@ -321,15 +321,6 @@ private TaskStatus copyFiles(Path sourceDir, Path destDir, List 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;