We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
spring-aop has a implicit rule for determining default AsyncExecutor when there`s no AsyncConfigurer existed
See AsyncExecutionAspectSupport.java#L227
DefaultAsyncAutoConfiguration will override it in the above case
@Configuration @ConditionalOnMissingBean(AsyncConfigurer.class) static class DefaultTracedAsyncConfigurerSupport extends AsyncConfigurerSupport { @Autowired @Lazy private Tracer tracer; @Override public Executor getAsyncExecutor() { return new TracedExecutor(new SimpleAsyncTaskExecutor(), tracer); } }
java version "1.8.0_131" spring-aop 4.3.11 opentracing-spring-cloud-core latest
The text was updated successfully, but these errors were encountered:
Fix to prevent override a implicit AsyncTaskExecutor (opentracing-con…
4eb9a64
…trib#313)
Add a test case (opentracing-contrib#313)
f8862fc
format test case (opentracing-contrib#313)
71ad8dd
No branches or pull requests
problem
spring-aop has a implicit rule for determining default AsyncExecutor when there`s no AsyncConfigurer existed
See AsyncExecutionAspectSupport.java#L227
DefaultAsyncAutoConfiguration will override it in the above case
version
java version "1.8.0_131"
spring-aop 4.3.11
opentracing-spring-cloud-core latest
The text was updated successfully, but these errors were encountered: