diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2024-11-07 09:57:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-11-07 09:57:13 +0000 |
commit | b718a200ee1da4b65ce87ea2a004317a363fdcb3 (patch) | |
tree | 6ad9e676b91f57263237855df33b599cc76b3322 /cps-ncmp-service | |
parent | 3399fdea15b9c7e6d05148f82f9ceeeee813b84a (diff) | |
parent | 9eeb8e9641163e1c7fc9bba85fedaa965a5d7e2f (diff) |
Merge "Removing ONAP O-Parent as parent from CPS"
Diffstat (limited to 'cps-ncmp-service')
-rw-r--r-- | cps-ncmp-service/src/main/java/org/onap/cps/ncmp/impl/utils/http/WebClientConfiguration.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/impl/utils/http/WebClientConfiguration.java b/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/impl/utils/http/WebClientConfiguration.java index 8ae942eb7b..eefabd1079 100644 --- a/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/impl/utils/http/WebClientConfiguration.java +++ b/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/impl/utils/http/WebClientConfiguration.java @@ -57,7 +57,7 @@ public class WebClientConfiguration { .option(ChannelOption.CONNECT_TIMEOUT_MILLIS, serviceConfig.getConnectionTimeoutInSeconds() * 1000) .doOnConnected(connection -> connection.addHandlerLast(new ReadTimeoutHandler( serviceConfig.getReadTimeoutInSeconds(), TimeUnit.SECONDS)).addHandlerLast( - new WriteTimeoutHandler(serviceConfig.getWriteTimeoutInSeconds(), TimeUnit.SECONDS))) + new WriteTimeoutHandler(serviceConfig.getWriteTimeoutInSeconds(), TimeUnit.SECONDS))) .resolver(DefaultAddressResolverGroup.INSTANCE) .compress(true); } |