Move 'Execute post-request interceptors' into finally block, formerly it's skipped on Error's

This commit is contained in:
Travis Burtrum 2019-01-08 11:10:59 -05:00
parent 2ea7dd2b83
commit 55573244f3

View File

@ -869,7 +869,6 @@ public class PageFlowRequestProcessor
_servletContainerAdapter.endRequest( request, response );
long timeTaken = System.currentTimeMillis() - startTime;
er.endActionRequest( requestContext, timeTaken );
}
//
// Execute post-request interceptors
@ -890,6 +889,7 @@ public class PageFlowRequestProcessor
" ------------------------------------" );
}
}
}
/**
* If this is a multipart request, wrap it with a special wrapper. Otherwise, return the request unchanged.