aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/vespa/model/utils
diff options
context:
space:
mode:
authorArne Juul <arnej@yahoo-inc.com>2019-07-31 09:39:21 +0000
committerArne Juul <arnej@yahoo-inc.com>2019-08-01 09:14:45 +0000
commitc27b7f877b7727bbab1a314fe798df8a66732f0a (patch)
tree889878546f27d4c2be489be94c3d3163da6686f6 /config-model/src/test/java/com/yahoo/vespa/model/utils
parentf2aaaf89a0f24790ff2322b7b4f88256940c2917 (diff)
add API for explicitly allocating network ports
Diffstat (limited to 'config-model/src/test/java/com/yahoo/vespa/model/utils')
-rw-r--r--config-model/src/test/java/com/yahoo/vespa/model/utils/FileSenderTest.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/config-model/src/test/java/com/yahoo/vespa/model/utils/FileSenderTest.java b/config-model/src/test/java/com/yahoo/vespa/model/utils/FileSenderTest.java
index 79646dacaa9..363baccf33f 100644
--- a/config-model/src/test/java/com/yahoo/vespa/model/utils/FileSenderTest.java
+++ b/config-model/src/test/java/com/yahoo/vespa/model/utils/FileSenderTest.java
@@ -9,6 +9,7 @@ import com.yahoo.config.model.producer.UserConfigRepo;
import com.yahoo.config.model.test.MockRoot;
import com.yahoo.vespa.config.*;
import com.yahoo.vespa.model.AbstractService;
+import com.yahoo.vespa.model.PortAllocBridge;
import com.yahoo.vespa.model.SimpleConfigProducer;
import org.junit.Before;
import org.junit.Test;
@@ -175,5 +176,7 @@ public class FileSenderTest {
@Override
public String[] getPortSuffixes() { return null; }
+
+ @Override public void allocatePorts(int start, PortAllocBridge from) { }
}
}