Merge remote-tracking branch 'origin/jetty-7' into jetty-8
This commit is contained in:
commit
446820071b
|
@ -69,25 +69,28 @@ public class RequestLogHandler extends HandlerWrapper
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
if (continuation.isAsync())
|
if (_requestLog != null && baseRequest.getDispatcherType().equals(DispatcherType.REQUEST))
|
||||||
{
|
{
|
||||||
if (continuation.isInitial())
|
if (continuation.isAsync())
|
||||||
continuation.addContinuationListener(new ContinuationListener()
|
{
|
||||||
{
|
if (continuation.isInitial())
|
||||||
|
continuation.addContinuationListener(new ContinuationListener()
|
||||||
public void onTimeout(Continuation continuation)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
public void onTimeout(Continuation continuation)
|
||||||
|
{
|
||||||
public void onComplete(Continuation continuation)
|
|
||||||
{
|
}
|
||||||
_requestLog.log(baseRequest, (Response)response);
|
|
||||||
}
|
public void onComplete(Continuation continuation)
|
||||||
});
|
{
|
||||||
|
_requestLog.log(baseRequest, (Response)response);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else
|
||||||
|
_requestLog.log(baseRequest, (Response)response);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
_requestLog.log(baseRequest, (Response)response);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue