Makes the new queueInstrumentation opt-in
This commit is contained in:
@@ -234,7 +234,7 @@ class HookRegisteringBeanDefinitionRegistryPostProcessor
|
||||
"You have explicitly set the decorate hooks option but you're using an old version of Reactor. Please upgrade to the latest Boot version (at least 2.3.9.RELEASE). Will fall back to the previous reactor instrumentation mode");
|
||||
}
|
||||
else {
|
||||
decorateQueues = decorateQueues != null ? decorateQueues : Boolean.TRUE;
|
||||
decorateQueues = decorateQueues != null ? decorateQueues : Boolean.FALSE;
|
||||
}
|
||||
if (wrapperOnClasspathHooksPropertyTurnedOn(decorateQueues)) {
|
||||
if (log.isTraceEnabled()) {
|
||||
|
||||
@@ -49,8 +49,7 @@ public class TraceNoWebEnvironmentTests {
|
||||
}
|
||||
catch (Exception e) {
|
||||
Throwable cause = e.getCause() != null ? e.getCause() : e;
|
||||
then(cause.getClass())
|
||||
.isNotEqualTo(NoSuchBeanDefinitionException.class);
|
||||
then(cause.getClass()).isNotEqualTo(NoSuchBeanDefinitionException.class);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -167,7 +167,7 @@ public class WebClientTests {
|
||||
this.testErrorController.clear();
|
||||
this.fooController.clear();
|
||||
}
|
||||
|
||||
|
||||
@Before
|
||||
public void setup() {
|
||||
log.info("Starting test");
|
||||
|
||||
Reference in New Issue
Block a user