Description
The process method in org.apache.struts.chain.ComposableRequestProcessor invokes release() on the ActionContext only on success.
The release() method should be invoked regardless of the result of the execution.
To fix, simply add a finally clause around the line like this:
finally {
context.release();
}