This commit is contained in:
Shinsuke Sugaya 2013-12-16 22:45:59 +09:00
parent 2fb512d8aa
commit 3af283b89d

View file

@ -192,9 +192,11 @@ public class CrawlingConfigHelper implements Serializable {
StreamUtil.drain(is, os);
os.flush();
} catch (final IOException e) {
throw new FessSystemException(
"Failed to write a content. configId: " + configIdObj
+ ", url: " + url, e);
if (!"ClientAbortException".equals(e.getClass().getSimpleName())) {
throw new FessSystemException(
"Failed to write a content. configId: " + configIdObj
+ ", url: " + url, e);
}
} finally {
IOUtils.closeQuietly(is);
IOUtils.closeQuietly(os);