Revert temporary workaround for reactor resources

This switches back the Reactor resources on global by default.

See gh-14058
See SPR-17199
This commit is contained in:
Brian Clozel 2018-09-04 15:37:39 +02:00
parent 3e745eefc0
commit 2af8a9617b
1 changed files with 1 additions and 3 deletions

View File

@ -47,9 +47,7 @@ class ClientHttpConnectorConfiguration {
@Bean
@ConditionalOnMissingBean
public ReactorResourceFactory reactorResourceFactory() {
ReactorResourceFactory factory = new ReactorResourceFactory();
factory.setGlobalResources(false);
return factory;
return new ReactorResourceFactory();
}
@Bean