You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by ea...@apache.org on 2020/07/27 23:38:36 UTC

[incubator-sdap-nexus] branch bug_fixes updated: fix bad argument order

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

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


The following commit(s) were added to refs/heads/bug_fixes by this push:
     new 47ce3e9  fix bad argument order
47ce3e9 is described below

commit 47ce3e9fa01bfbe9dc6b42632df235d3ddca04ec
Author: Eamon Ford <ea...@jpl.nasa.gov>
AuthorDate: Mon Jul 27 16:38:23 2020 -0700

    fix bad argument order
---
 analysis/webservice/algorithms_spark/HofMoellerSpark.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/analysis/webservice/algorithms_spark/HofMoellerSpark.py b/analysis/webservice/algorithms_spark/HofMoellerSpark.py
index 6616ae2..7c3041a 100644
--- a/analysis/webservice/algorithms_spark/HofMoellerSpark.py
+++ b/analysis/webservice/algorithms_spark/HofMoellerSpark.py
@@ -413,8 +413,8 @@ class LongitudeTimeHoffMoellerSparkHandlerImpl(BaseHoffMoellerSparkHandlerImpl):
 
         results = spark_driver(self._sc,
                                self._latlon,
-                               nexus_tiles_spark,
                                self._tile_service_factory,
+                               nexus_tiles_spark,
                                metrics_record.record_metrics)
 
         results = filter(None, results)