Shinsuke Sugaya há 11 anos atrás
pai
commit
3af283b89d

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