提交 fccc3498 编写于 作者: J Jesse Glick

[JENKINS-26519] Unreproducible NPE from unmigrateJobsDir.

上级 b2cc3637
......@@ -309,7 +309,12 @@ public final class RunIdMigrator {
new RunIdMigrator().unmigrateJobsDir(jobs);
}
private void unmigrateJobsDir(File jobs) throws Exception {
for (File job : jobs.listFiles()) {
File[] jobDirs = jobs.listFiles();
if (jobDirs == null) {
System.err.println(jobs + " claimed to exist, but cannot be listed");
return;
}
for (File job : jobDirs) {
File[] kids = job.listFiles();
if (kids == null) {
continue;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册