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/08/05 01:27:50 UTC

[incubator-sdap-nexus] branch master updated: Fixed error causing timeSeriesSpark to fail (#186)

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 5c96c3d  Fixed error causing timeSeriesSpark to fail (#186)
5c96c3d is described below

commit 5c96c3d941552ff497cef8f2a9e2c4c26df41363
Author: Riley Kuttruff <72...@users.noreply.github.com>
AuthorDate: Thu Aug 4 18:27:46 2022 -0700

    Fixed error causing timeSeriesSpark to fail (#186)
    
    * Fixed error in timeSeriesSpark
    
    It appeared to have been caused by an import issue in RedirectHandler.py
    
    * Updated changelog
    
    Co-authored-by: rileykk <ri...@jpl.nasa.gov>
---
 CHANGELOG.md                                    | 1 +
 analysis/webservice/redirect/RedirectHandler.py | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 054da4e..d7cf791 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -32,4 +32,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 - Fixed issue where satellite to satellite matchups with the same dataset don't return the expected result
 - Fixed CSV and NetCDF matchup output bug
 - Fixed NetCDF output switching latitude and longitude
+- Fixed import error causing `/timeSeriesSpark` queries to fail.
 ### Security
\ No newline at end of file
diff --git a/analysis/webservice/redirect/RedirectHandler.py b/analysis/webservice/redirect/RedirectHandler.py
index 58b5aff..9773182 100644
--- a/analysis/webservice/redirect/RedirectHandler.py
+++ b/analysis/webservice/redirect/RedirectHandler.py
@@ -1,4 +1,5 @@
-import tornado
+import tornado.web
+import tornado.gen
 import logging
 from webservice.webmodel.RequestParameters import RequestParameters