You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by rk...@apache.org on 2023/07/05 20:42:00 UTC

[incubator-sdap-nexus] 01/02: Fix for cdmslist bug

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

rkk pushed a commit to branch SDAP-467-b
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git

commit 82810e1f95ef050988c7723e2f08bf71879f3c1b
Author: rileykk <ri...@jpl.nasa.gov>
AuthorDate: Wed Jul 5 13:28:12 2023 -0700

    Fix for cdmslist bug
---
 analysis/webservice/algorithms/doms/DatasetListQuery.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/analysis/webservice/algorithms/doms/DatasetListQuery.py b/analysis/webservice/algorithms/doms/DatasetListQuery.py
index 78ba6ab..bf3c07f 100644
--- a/analysis/webservice/algorithms/doms/DatasetListQuery.py
+++ b/analysis/webservice/algorithms/doms/DatasetListQuery.py
@@ -23,7 +23,7 @@ from . import config
 from . import values
 from webservice.algorithms.NexusCalcHandler import NexusCalcHandler as BaseHandler
 from webservice.NexusHandler import nexus_handler
-from webservice.webmodel import cached
+from webservice.webmodel import cached, NexusResults
 
 
 @nexus_handler
@@ -120,4 +120,4 @@ class DomsDatasetListQueryHandler(BaseDomsHandler.BaseDomsQueryCalcHandler):
             "insitu": insituList
         }
 
-        return BaseDomsHandler.DomsQueryResults(results=values)
+        return NexusResults(results=values)