diff options
author | Remigiusz Janeczek <remigiusz.janeczek@nokia.com> | 2020-12-28 13:58:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-12-28 13:58:27 +0000 |
commit | ae4dcd511e70bd95222c504771fa184d993b5bba (patch) | |
tree | 379f2a7ce7af4dc6bd0797ed67815965162c6556 /sources/hv-collector-health-check | |
parent | 4d9d6a5160d38e3ebc026d5e07228cb4418686fb (diff) | |
parent | f282dc63f560fe3fc3f885097f43142bfc2f9824 (diff) |
Merge "Upgrade hv-ves, reactor, protobuf and sdk versions"1.6.0
Diffstat (limited to 'sources/hv-collector-health-check')
-rw-r--r-- | sources/hv-collector-health-check/pom.xml | 2 | ||||
-rw-r--r-- | sources/hv-collector-health-check/src/main/kotlin/org/onap/dcae/collectors/veshv/healthcheck/factory/HealthCheckApiServer.kt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sources/hv-collector-health-check/pom.xml b/sources/hv-collector-health-check/pom.xml index 14a3535b..d420316e 100644 --- a/sources/hv-collector-health-check/pom.xml +++ b/sources/hv-collector-health-check/pom.xml @@ -15,7 +15,7 @@ <parent> <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId> <artifactId>hv-collector-sources</artifactId> - <version>1.5.1-SNAPSHOT</version> + <version>1.6.0-SNAPSHOT</version> </parent> <artifactId>hv-collector-health-check</artifactId> diff --git a/sources/hv-collector-health-check/src/main/kotlin/org/onap/dcae/collectors/veshv/healthcheck/factory/HealthCheckApiServer.kt b/sources/hv-collector-health-check/src/main/kotlin/org/onap/dcae/collectors/veshv/healthcheck/factory/HealthCheckApiServer.kt index cff8160c..c2f5e798 100644 --- a/sources/hv-collector-health-check/src/main/kotlin/org/onap/dcae/collectors/veshv/healthcheck/factory/HealthCheckApiServer.kt +++ b/sources/hv-collector-health-check/src/main/kotlin/org/onap/dcae/collectors/veshv/healthcheck/factory/HealthCheckApiServer.kt @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * dcaegen2-collectors-veshv * ================================================================================ - * Copyright (C) 2018-2019 NOKIA + * Copyright (C) 2018-2020 NOKIA * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -48,7 +48,7 @@ class HealthCheckApiServer(private val healthState: HealthState, healthState().subscribe(healthDescription::set) HttpServer.create() .tcpConfiguration { - it.addressSupplier { listenAddress } + it.bindAddress { listenAddress } .doOnUnbound { logClose() } } .route { routes -> |