ReactorNettyTcpClient uses elastic pool

Issue: SPR-16626
This commit is contained in:
Rossen Stoyanchev 2018-03-22 20:22:07 -04:00
parent a8688880b1
commit 1b83f129a2
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ public class ReactorNettyTcpClient<P> implements TcpOperations<P> {
builder.loopResources(this.loopResources);
if (!builder.isPoolDisabled()) {
this.poolResources = PoolResources.fixed("tcp-client-pool");
this.poolResources = PoolResources.elastic("tcp-client-pool");
builder.poolResources(this.poolResources);
}
};