vio-lin commented on PR #11965:
URL: https://github.com/apache/dubbo/pull/11965#issuecomment-1738360416

   timeout 超时回调加了一个 isShutdown的判断。  
   我们线上也出现了 线程池被关掉的情况。 问下当时是有什么逻辑 触发了这个shutdonw 吗。
   ```
     ExecutorService executor = future.getExecutor();
               if (executor != null && !executor.isShutdown()) {
                   executor.execute(() -> notifyTimeout(future));
               } else {
                   notifyTimeout(future);
               }
   ```
   
   


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to