summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-06-15 13:29:30 +0200
committerGitHub <noreply@github.com>2021-06-15 13:29:30 +0200
commita2daf6e755be41f78e594be6a542a23ccacae6eb (patch)
tree5b932d99cd026a00898677d9cfdbfd087a449283 /config
parent954c754eb23aeb3c1b204107090f4df4ae8e558c (diff)
Update JRTConnectionPool.java
Remove extraneous .
Diffstat (limited to 'config')
-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 ef6ff3a0327..b5147075972 100644
--- a/config/src/main/java/com/yahoo/vespa/config/JRTConnectionPool.java
+++ b/config/src/main/java/com/yahoo/vespa/config/JRTConnectionPool.java
@@ -43,7 +43,7 @@ public class JRTConnectionPool implements ConnectionPool {
public JRTConnectionPool(ConfigSourceSet sourceSet, String poolName) {
this.poolName = poolName;
- supervisor = new Supervisor(new Transport(poolName))..setDropEmptyBuffers(true);
+ supervisor = new Supervisor(new Transport(poolName)).setDropEmptyBuffers(true);
addSources(sourceSet);
}