mirror of https://github.com/apache/lucene.git
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:
parent
2c51c55a28
commit
6b7362404a
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue