Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/handler/ContextHandler.java @ 921:a5af9ee7cf91
remove isExpired()
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 09 Oct 2016 18:09:50 -0600 |
parents | cab5830e1ab0 |
children | d35b0a3a7a4a |
comparison
equal
deleted
inserted
replaced
920:3268ddf919d4 | 921:a5af9ee7cf91 |
---|---|
928 | 928 |
929 // Are we already in this context? | 929 // Are we already in this context? |
930 if (old_context != _scontext) | 930 if (old_context != _scontext) |
931 { | 931 { |
932 // check the target. | 932 // check the target. |
933 if (DispatcherType.REQUEST.equals(dispatch) || DispatcherType.ASYNC.equals(dispatch) || (DispatcherType.ERROR.equals(dispatch) && baseRequest.getAsyncContinuation().isExpired())) | 933 if (DispatcherType.REQUEST.equals(dispatch) || DispatcherType.ASYNC.equals(dispatch)) |
934 { | 934 { |
935 if (_compactPath) | 935 if (_compactPath) |
936 target = URIUtil.compactPath(target); | 936 target = URIUtil.compactPath(target); |
937 if (!checkContext(target,baseRequest,response)) | 937 if (!checkContext(target,baseRequest,response)) |
938 return; | 938 return; |