From cb08e0822cc44fc7b382e9b48682ab93607f7c43 Mon Sep 17 00:00:00 2001 From: Piotr Jaszczyk Date: Tue, 26 Mar 2019 12:36:10 +0000 Subject: Revert "Read HV-VES healtcheck api port from cmd line" This reverts commit f3d3e6745328b9ec8bb68dfbfb3d3d57aa47b36f. Change-Id: I9d8813484831483812b0f7062d39e3d031dd7083 Signed-off-by: Piotr Jaszczyk Issue-ID: DCAEGEN2-1364 --- .../src/main/kotlin/org/onap/dcae/collectors/veshv/main/main.kt | 2 +- .../org/onap/dcae/collectors/veshv/main/servers/HealthCheckServer.kt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'sources/hv-collector-main/src') 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() fun main(args: Array) { - 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) -- cgit 1.2.3-korg