diff options
author | Liang Ding <liang.ding@intel.com> | 2019-03-24 21:40:51 -0700 |
---|---|---|
committer | Ofir Sonsino <ofir.sonsino@intl.att.com> | 2019-03-25 10:49:01 +0000 |
commit | 53903f1d96affe2c21e3ffbdd45aea8f7af0714d (patch) | |
tree | c20ac44bf271923c4e76fd3177816a779c521d2e /catalog-fe/src | |
parent | 804ec686128a49628e9f656397e4a4512e4c5714 (diff) |
fix a typo
retrive -- > retrieve
Change-Id: Ic6bce5b991c042cc2d19f1f72dd827644111b105
Issue-ID: SDC-2207
Signed-off-by: Liang Ding <liang.ding@intel.com>
Diffstat (limited to 'catalog-fe/src')
-rw-r--r-- | catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/FeProxyServlet.java | 2 | ||||
-rw-r--r-- | catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/KibanaServlet.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/FeProxyServlet.java b/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/FeProxyServlet.java index a79397b8b2..122543dd0c 100644 --- a/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/FeProxyServlet.java +++ b/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/FeProxyServlet.java @@ -158,7 +158,7 @@ public class FeProxyServlet extends SSLProxyServlet { private String getModifiedUrl(HttpServletRequest request) throws MalformedURLException { Configuration config = getConfiguration(request); if (config == null) { - log.error(EcompLoggerErrorCode.UNKNOWN_ERROR,"FeProxyServlet getModifiedUrl", "sdc-FE", "failed to retrive configuration."); + log.error(EcompLoggerErrorCode.UNKNOWN_ERROR,"FeProxyServlet getModifiedUrl", "sdc-FE", "failed to retrieve configuration."); throw new RuntimeException("failed to read FE configuration"); } String uri = request.getRequestURI(); diff --git a/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/KibanaServlet.java b/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/KibanaServlet.java index b3bbf4708d..8554927566 100644 --- a/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/KibanaServlet.java +++ b/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/KibanaServlet.java @@ -48,7 +48,7 @@ public class KibanaServlet extends ProxyServlet { public String getModifiedUrl(HttpServletRequest request) { Configuration config = getConfiguration(request); if (config == null) { - log.error("failed to retrive configuration."); + log.error("failed to retrieve configuration."); } // String scheme = request.getScheme(); String contextPath = request.getContextPath(); // /mywebapp |