if fsync()'ing the segments.gen gets interrupt()ed in its hairy sleeping loop, ignore it like any other exception, we already committed and this file is optional

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1426402 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-12-28 05:13:47 +00:00
parent 2c51c55a28
commit 6b7362404a
1 changed files with 0 additions and 3 deletions

View File

@ -868,9 +868,6 @@ public final class SegmentInfos implements Cloneable, Iterable<SegmentInfoPerCom
// Ignore; this file is only used in a retry // Ignore; this file is only used in a retry
// fallback on init. // fallback on init.
} }
if (t instanceof ThreadInterruptedException) {
throw (ThreadInterruptedException) t;
}
} }
} }