lialatdd commented on issue #1727: URL: https://github.com/apache/rocketmq/issues/1727#issuecomment-715877173
> request reply调用,我也遇到很多超时的情况,使用的版本是4.6.0,这个问题是已经修复了吗? 4.7.1版本还有这个问题,我试着自己解决了,在RequestResponseFuture中增加AtomicBoolean类型属性markRemoved,将RequestFutureTable#scanExpiredRequest方法中的if(rep.isTimeout())替换为(rep.isTimeout() && rep.getMarkRemoved().compareAndSet(false, true)) 可以解决这个问题,亲测有效 ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
