Re: http2 async timeout setting

2019-12-10 Thread Mark Thomas
On 10/12/2019 11:23, Arief Hasani wrote: > Hi Mark, > Very much appreciated. Fixed in: - master for 9.0.31 onwards - 8.5.x for 8.5.51 onwards 7.0.x was not affected. Mark > Thanks > On Monday, December 9, 2019, 05:59:58 PM GMT+7, Mark Thomas > wrote: > > On 07/12/2019 03:46, Arief

Re: http2 async timeout setting

2019-12-10 Thread Arief Hasani
Hi Mark, Very much appreciated. Thanks On Monday, December 9, 2019, 05:59:58 PM GMT+7, Mark Thomas wrote: On 07/12/2019 03:46, Arief Hasani wrote: >  Hi Chris,  > Thanks for the reminder. following is the code that runs the timeout listener > on time while running on http1.1 but not

Re: http2 async timeout setting

2019-12-09 Thread Mark Thomas
On 07/12/2019 03:46, Arief Hasani wrote: > Hi Chris,  > Thanks for the reminder. following is the code that runs the timeout listener > on time while running on http1.1 but not on http2. tested on 9.0.29 I can reproduce this. I'm working on a fix now. Mark

Re: http2 async timeout setting

2019-12-06 Thread Arief Hasani
Hi Chris,  Thanks for the reminder. following is the code that runs the timeout listener on time while running on http1.1 but not on http2. tested on 9.0.29 start code@WebServlet(name = "Test", urlPatterns = {"/test"}, asyncSupported = true)public class Main extends HttpServlet { @Override 

Re: http2 async timeout setting

2019-12-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Afief, On 12/5/19 00:47, Arief Hasani wrote: > Seems like AsyncContext.setTimeout is not working if using http2 > (clients are chome, firefox, safari on mac). It runs well on > http1.1 Seems like posting some sample code with your expectations

http2 async timeout setting

2019-12-04 Thread Arief Hasani
Hi Guys, Seems like AsyncContext.setTimeout is not working if using http2 (clients are chome, firefox, safari on mac). It runs well on http1.1 Thanks