Shinsuke Sugaya 11 년 전
부모
커밋
3af283b89d
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      src/main/java/jp/sf/fess/helper/CrawlingConfigHelper.java

+ 5 - 3
src/main/java/jp/sf/fess/helper/CrawlingConfigHelper.java

@@ -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);