summaryrefslogtreecommitdiffstats
path: root/vespa-http-client
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2018-01-22 11:42:35 +0100
committerJon Bratseth <bratseth@yahoo-inc.com>2018-01-22 11:42:35 +0100
commit92abbad9207758578a4c56b6c9fe7f332a6546ee (patch)
tree37d448d8357587e1e620c3babd02ac6ba2f9f654 /vespa-http-client
parent59594cb7ff0d97164eff542f184afe576e342a4b (diff)
Parse generated tensor function trees
To make generated tensor function trees transparent to the config model we need to convert each tensor function node to the corresponding ranking expression node. This is most easily done by parsing the tensor function tree string output as a ranking expression (something which is required to always work in any case).
Diffstat (limited to 'vespa-http-client')
-rw-r--r--vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/ClusterConnection.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/ClusterConnection.java b/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/ClusterConnection.java
index fb57c63dbf2..cbc80466dd5 100644
--- a/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/ClusterConnection.java
+++ b/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/ClusterConnection.java
@@ -26,6 +26,7 @@ import java.util.concurrent.TimeUnit;
*/
@Beta
public class ClusterConnection implements AutoCloseable {
+
private final OperationProcessor operationProcessor;
private final List<IOThread> ioThreads = new ArrayList<>();
private final int clusterId;