mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
Merged V4.1-BUG-FIX (4.1.8) to V4.2-BUG-FIX (4.2.1)
57816: Merged DEV to V4.1-BUG-FIX (4.1.8) 57643: MNT-8989: MP4 and mov accessed over WebDav on safari or Chrome cause exceptions in log Added ClientAbortException check. Added unit tests. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/V4.2-BUG-FIX/root@57858 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -283,7 +283,7 @@ public class GetMethod extends WebDAVMethod
|
||||
break;
|
||||
}
|
||||
t = t.getCause();
|
||||
if (t instanceof SocketException)
|
||||
if (t instanceof SocketException || t.getClass().getSimpleName().equals("ClientAbortException"))
|
||||
{
|
||||
logAsError = false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user