diff options
author | Piotr Jaszczyk <piotr.jaszczyk@nokia.com> | 2019-03-26 12:36:10 +0000 |
---|---|---|
committer | Piotr Jaszczyk <piotr.jaszczyk@nokia.com> | 2019-03-26 12:36:10 +0000 |
commit | cb08e0822cc44fc7b382e9b48682ab93607f7c43 (patch) | |
tree | e11492e6a1b41025dafea9f9cdb190c9b255bc41 /sources/hv-collector-main | |
parent | f3d3e6745328b9ec8bb68dfbfb3d3d57aa47b36f (diff) |
Revert "Read HV-VES healtcheck api port from cmd line"
This reverts commit f3d3e6745328b9ec8bb68dfbfb3d3d57aa47b36f.
Change-Id: I9d8813484831483812b0f7062d39e3d031dd7083
Signed-off-by: Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
Issue-ID: DCAEGEN2-1364
Diffstat (limited to 'sources/hv-collector-main')
2 files changed, 3 insertions, 2 deletions
diff --git a/sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/main.kt b/sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/main.kt index 511f5ee3..c8a3c013 100644 --- a/sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/main.kt +++ b/sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/main.kt @@ -40,7 +40,7 @@ private val logger = Logger("$VES_HV_PACKAGE.main") private val hvVesServer = AtomicReference<ServerHandle>() fun main(args: Array<String>) { - HealthCheckServer.start(ConfigurationModule().healthCheckPort(args)) + HealthCheckServer.start() ConfigurationModule() .hvVesConfigurationUpdates(args) .publishOn(Schedulers.single(Schedulers.elastic())) diff --git a/sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/servers/HealthCheckServer.kt b/sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/servers/HealthCheckServer.kt index 9b58dcc9..bc284d08 100644 --- a/sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/servers/HealthCheckServer.kt +++ b/sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/servers/HealthCheckServer.kt @@ -34,9 +34,10 @@ import java.net.InetSocketAddress */ object HealthCheckServer { + private const val DEFAULT_HEALTHCHECK_PORT = 6060 private val logger = Logger(HealthCheckServer::class) - fun start(port: Int) = + fun start(port: Int = DEFAULT_HEALTHCHECK_PORT) = createHealthCheckServer(port) .start() .then(::logServerStarted) |