Revert "474618 - AsyncListener.onComplete not called when error occurs"

This reverts commit 60f409e4ff.
This commit is contained in:
Joakim Erdfelt 2015-08-10 09:38:40 -07:00
parent 60f409e4ff
commit 9ca235beca
1 changed files with 2 additions and 9 deletions

View File

@ -18,7 +18,6 @@
package org.eclipse.jetty.server;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.TimeUnit;
@ -546,19 +545,13 @@ public class HttpChannelState
{
if (event.getThrowable()!=null)
listener.onError(event);
else
listener.onComplete(event);
}
catch(Exception e)
{
LOG.warn(e);
}
try
{
listener.onComplete(event);
}
catch (IOException e)
{
LOG.warn(e);
}
}
}