aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/cfg/application/configuredportconfig/services.xml
blob: d1f4d2d8994337e0e738a07c15813bf07e5a85cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<services>

  <com.yahoo.vespa.model.test.SimplePlugin version="1.0">
    <simpleservice hostalias="host1" />
    <simpleservice hostalias="host1" />
    <simpleservice hostalias="host1" baseport="9000" />

    <!-- Conflicts with the previous service -->
    <simpleservice hostalias="host1" baseport="9000" />

    <!-- Conflicts with the first service, because of getWantedPort() -->
    <simpleservice hostalias="host1" baseport="10000" />

    <!-- Above the dynamic port range -->
    <simpleservice hostalias="host1" baseport="20000" />

  </com.yahoo.vespa.model.test.SimplePlugin>
</services>