"Christopher K. St. John" wrote:
> 
>  jk/java/org/apache/jk/JkCoyoteHandler ACTION_CLOSE is getting
> called with no call to ACTION_COMMIT
>
>  Quick fix is to have JkCoyoteHandler CLOSE commit if the
> response hasn't already been committed:
> 
                if( !res.isCommitted() )
                    this.action( ActionCode.ACTION_COMMIT, param );
 
 Looks like this may really be how it's supposed to work,
so I'd like to check this change in. However, as other
people are actively working on the code, I'm going to be
a wimp and ask first.

 Background: Http11Processor.action(CLOSE) results in
a call to outputBuffer.endRequest() which does the
same sort of check-if-commited-and-commit check that
I want to add to JkCoyoteHandler.

 Are there any objections? 


-- 
Christopher St. John [EMAIL PROTECTED]
DistribuTopia http://www.distributopia.com

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to