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/07 18:04:22 UTC

[incubator-sdap-nexus] branch SDAP-474 created (now ed936d4)

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

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


      at ed936d4  Changelog

This branch includes the following new commits:

     new c1744bb  Check if matchup param is a list or str
     new ed936d4  Changelog

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-sdap-nexus] 02/02: Changelog

Posted by rk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit ed936d41a5607dd5ff80ecc64815d89b686968bc
Author: rileykk <ri...@jpl.nasa.gov>
AuthorDate: Fri Jul 7 11:02:41 2023 -0700

    Changelog
---
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 719ec99..53c1295 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 ### Removed
 - SDAP-465: Removed `climatology` directory. 
 ### Fixed
+- SDAP-474: Fixed bug in CSV attributes where secondary dataset would be rendered as comma separated characters
 ### Security
 
 ## [1.1.0] - 2023-04-26


[incubator-sdap-nexus] 01/02: Check if matchup param is a list or str

Posted by rk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit c1744bbf80b8ea44fa3cb486c902b0ae99a22492
Author: rileykk <ri...@jpl.nasa.gov>
AuthorDate: Fri Jul 7 11:00:49 2023 -0700

    Check if matchup param is a list or str
---
 analysis/webservice/algorithms/doms/BaseDomsHandler.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/analysis/webservice/algorithms/doms/BaseDomsHandler.py b/analysis/webservice/algorithms/doms/BaseDomsHandler.py
index 2897e8d..af2e6d3 100644
--- a/analysis/webservice/algorithms/doms/BaseDomsHandler.py
+++ b/analysis/webservice/algorithms/doms/BaseDomsHandler.py
@@ -267,7 +267,7 @@ class DomsCSVFormatter:
 
             {"Global Attribute": "CDMS_DatasetMetadata", "Value": ', '.join(insituLinks)},
             {"Global Attribute": "CDMS_primary", "Value": params["primary"]},
-            {"Global Attribute": "CDMS_secondary", "Value": ','.join(params['matchup'])},
+            {"Global Attribute": "CDMS_secondary", "Value": ','.join(params['matchup']) if isinstance(params["matchup"], list) else params['matchup']},
             {"Global Attribute": "CDMS_ParameterPrimary", "Value": params.get("parameter", "")},
 
             {"Global Attribute": "CDMS_time_to_complete", "Value": details["timeToComplete"]},