diff options
author | romaingimbert <romain.gimbert@orange.com> | 2018-05-28 09:41:05 +0200 |
---|---|---|
committer | romaingimbert <romain.gimbert@orange.com> | 2018-05-28 09:41:05 +0200 |
commit | 8934b127d53e4a84cdfb38dd1751f7fab4fbb22c (patch) | |
tree | a20591a2efa9e0c2a4d366d86fafc88b5627e375 /src/main/java/org | |
parent | 7692c19e7f232b1f72fa6ee4149532a8b50740db (diff) |
nbi ko when can't reach onap
- fix infinite loop
- change test
Change-Id: I286e7ed9ea4b46ceb9af4d18d40adbf55de62e92
Issue-ID: EXTAPI-94
Signed-off-by: romaingimbert <romain.gimbert@orange.com>
Diffstat (limited to 'src/main/java/org')
-rw-r--r-- | src/main/java/org/onap/nbi/apis/serviceorder/MultiClient.java | 22 | ||||
-rw-r--r-- | src/main/java/org/onap/nbi/apis/serviceorder/SoClient.java | 13 |
2 files changed, 22 insertions, 13 deletions
diff --git a/src/main/java/org/onap/nbi/apis/serviceorder/MultiClient.java b/src/main/java/org/onap/nbi/apis/serviceorder/MultiClient.java index a09587c..a7e3356 100644 --- a/src/main/java/org/onap/nbi/apis/serviceorder/MultiClient.java +++ b/src/main/java/org/onap/nbi/apis/serviceorder/MultiClient.java @@ -15,6 +15,11 @@ */ package org.onap.nbi.apis.serviceorder; +import java.net.URI; +import java.util.HashMap; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; import org.onap.nbi.OnapComponentsUrlPaths; import org.onap.nbi.apis.serviceorder.model.consumer.SubscriberInfo; import org.onap.nbi.exceptions.BackendFunctionalException; @@ -22,17 +27,16 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; -import org.springframework.http.*; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpMethod; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Service; +import org.springframework.web.client.ResourceAccessException; import org.springframework.web.client.RestTemplate; import org.springframework.web.util.UriComponentsBuilder; -import java.net.URI; -import java.util.HashMap; -import java.util.LinkedHashMap; -import java.util.List; -import java.util.Map; - @Service public class MultiClient { @@ -179,7 +183,7 @@ public class MultiClient { + response.getBody().toString()); } return response; - } catch (BackendFunctionalException e) { + } catch (BackendFunctionalException|ResourceAccessException e) { LOGGER.error("error on calling " + callUrl + " ," + e); return null; } @@ -209,7 +213,7 @@ public class MultiClient { } return response; - } catch (BackendFunctionalException e) { + } catch (BackendFunctionalException|ResourceAccessException e) { LOGGER.error("error on calling " + callURL + " ," + e); return null; } diff --git a/src/main/java/org/onap/nbi/apis/serviceorder/SoClient.java b/src/main/java/org/onap/nbi/apis/serviceorder/SoClient.java index e0daa23..3dba422 100644 --- a/src/main/java/org/onap/nbi/apis/serviceorder/SoClient.java +++ b/src/main/java/org/onap/nbi/apis/serviceorder/SoClient.java @@ -24,8 +24,13 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; -import org.springframework.http.*; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpMethod; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Service; +import org.springframework.web.client.ResourceAccessException; import org.springframework.web.client.RestTemplate; @Service @@ -68,7 +73,7 @@ public class SoClient { logResponsePost(url, response); return response; - } catch (BackendFunctionalException e) { + } catch (BackendFunctionalException|ResourceAccessException e) { LOGGER.error(ERROR_ON_CALLING + url + " ," + e); return null; } @@ -90,7 +95,7 @@ public class SoClient { logResponsePost(url, response); return response; - } catch (BackendFunctionalException e) { + } catch (BackendFunctionalException|ResourceAccessException e) { LOGGER.error(ERROR_ON_CALLING + url + " ," + e); return null; } @@ -118,7 +123,7 @@ public class SoClient { logResponseGet(url, response); return response.getBody(); - } catch (BackendFunctionalException e) { + } catch (BackendFunctionalException|ResourceAccessException e) { LOGGER.error(ERROR_ON_CALLING + url + " ," + e); return null; } |