summaryrefslogtreecommitdiffstats
path: root/config/src
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-02-12 09:21:05 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-02-12 09:21:05 +0000
commitb0087080fd6766e6eb303317156b3fa8fd7d87e9 (patch)
tree59672271095eae55e9fdc9c4849b0c1c7ebc46f2 /config/src
parent519fc4209460f28de8d4954c1a50402d4af6b02b (diff)
enableSmallBuffers -> useSmallBuffers
Diffstat (limited to 'config/src')
-rw-r--r--config/src/main/java/com/yahoo/vespa/config/JRTConnectionPool.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/src/main/java/com/yahoo/vespa/config/JRTConnectionPool.java b/config/src/main/java/com/yahoo/vespa/config/JRTConnectionPool.java
index 4bfa2103cb1..05558d3ee5c 100644
--- a/config/src/main/java/com/yahoo/vespa/config/JRTConnectionPool.java
+++ b/config/src/main/java/com/yahoo/vespa/config/JRTConnectionPool.java
@@ -39,7 +39,7 @@ public class JRTConnectionPool implements ConnectionPool {
private volatile JRTConnection currentConnection;
public JRTConnectionPool(ConfigSourceSet sourceSet) {
- supervisor = new Supervisor(new Transport("config-jrtpool-" + sourceSet.hashCode())).enableSmallBuffers();
+ supervisor = new Supervisor(new Transport("config-jrtpool-" + sourceSet.hashCode())).useSmallBuffers();
addSources(sourceSet);
}