You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by GitBox <gi...@apache.org> on 2021/10/31 11:16:05 UTC

[GitHub] [dubbo] zrlw edited a comment on issue #9168: [3.0] 近期github构建经常提示ServiceConfigTest.testDelayExport第222行抛RejectedExecutionException

zrlw edited a comment on issue #9168:
URL: https://github.com/apache/dubbo/issues/9168#issuecomment-955678243


   是ServiceConfig的doDelayExport()方法执行时抛出的异常:
   ```
       protected void doDelayExport() {
           getScopeModel().getDefaultExtension(ExecutorRepository.class).getServiceExportExecutor()
               .schedule(() -> {
                   try {
                       doExport();
                   } catch (Exception e) {
                       logger.error("Failed to export service config: " + interfaceName, e);
                   }
               }, getDelay(), TimeUnit.MILLISECONDS);
       }
   ```
   可能是MultiInstanceTest导致的,MultiInstanceTest有线程泄露


-- 
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: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org