You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by nc...@apache.org on 2022/04/05 22:28:49 UTC

[incubator-sdap-nexus] branch master updated: Updated ICOADS url (#157)

This is an automated email from the ASF dual-hosted git repository.

nchung pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git


The following commit(s) were added to refs/heads/master by this push:
     new 74b37fb  Updated ICOADS url (#157)
74b37fb is described below

commit 74b37fb3df7cb4aaa27bff8bead7b99258f6286e
Author: Stepheny Perez <sk...@users.noreply.github.com>
AuthorDate: Tue Apr 5 15:28:44 2022 -0700

    Updated ICOADS url (#157)
    
    * Updated ICOADS url
    
    * import importlib metadata
    
    * Updated FSU doms insitu url
    
    * Updated samos url everywhere in config
    
    * Remove inadvertently committed file
---
 analysis/webservice/algorithms/doms/config.py | 8 ++++----
 docker/nexus-webapp/Dockerfile                | 1 +
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/analysis/webservice/algorithms/doms/config.py b/analysis/webservice/algorithms/doms/config.py
index 07c4d16..38c17ec 100644
--- a/analysis/webservice/algorithms/doms/config.py
+++ b/analysis/webservice/algorithms/doms/config.py
@@ -16,7 +16,7 @@
 ENDPOINTS = [
     {
         "name": "samos",
-        "url": "http://doms.coaps.fsu.edu:8890/ws/search/samos",
+        "url": "https://doms.coaps.fsu.edu/ws/search/samos",
         "fetchParallel": True,
         "fetchThreads": 8,
         "itemsPerPage": 1000,
@@ -32,7 +32,7 @@ ENDPOINTS = [
     },
     {
         "name": "icoads",
-        "url": "http://rda-data.ucar.edu:8890/ws/search/icoads",
+        "url": "http://rda-work.ucar.edu:8890/ws/search/icoads",
         "fetchParallel": True,
         "fetchThreads": 8,
         "itemsPerPage": 1000,
@@ -63,7 +63,7 @@ try:
         ENDPOINTS = [
             {
                 "name": "samos",
-                "url": "http://doms.coaps.fsu.edu:8890/ws/search/samos",
+                "url": "https://doms.coaps.fsu.edu/ws/search/samos",
                 "fetchParallel": True,
                 "fetchThreads": 8,
                 "itemsPerPage": 1000,
@@ -79,7 +79,7 @@ try:
             },
             {
                 "name": "icoads",
-                "url": "http://rda-data.ucar.edu:8890/ws/search/icoads",
+                "url": "http://rda-work.ucar.edu:8890/ws/search/icoads",
                 "fetchParallel": True,
                 "fetchThreads": 8,
                 "itemsPerPage": 1000,
diff --git a/docker/nexus-webapp/Dockerfile b/docker/nexus-webapp/Dockerfile
index 1bf0c21..e2b4187 100644
--- a/docker/nexus-webapp/Dockerfile
+++ b/docker/nexus-webapp/Dockerfile
@@ -89,6 +89,7 @@ RUN python3 setup.py install
 
 WORKDIR /incubator-sdap-nexus/analysis
 RUN python3 setup.py install
+RUN pip3 install importlib-metadata
 
 WORKDIR /incubator-sdap-nexus/tools/deletebyquery
 RUN pip3 install cassandra-driver==3.20.1 --install-option="--no-cython"