This is an automated email from the ASF dual-hosted git repository. skperez pushed a commit to branch matchup-bugfix in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git
commit f85af2813f7983a5030bd726d1b45661c7cc78db Author: skorper <[email protected]> AuthorDate: Fri Sep 2 12:08:53 2022 -0700 renamed 'details' field for matchup doms to match cdms changes --- analysis/webservice/algorithms_spark/MatchupDoms.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/analysis/webservice/algorithms_spark/MatchupDoms.py b/analysis/webservice/algorithms_spark/MatchupDoms.py index 97b3b9e..114b08b 100644 --- a/analysis/webservice/algorithms_spark/MatchupDoms.py +++ b/analysis/webservice/algorithms_spark/MatchupDoms.py @@ -266,10 +266,8 @@ class MatchupDoms(NexusCalcSparkHandler): total_values = sum(len(v) for v in spark_result.values()) details = { "timeToComplete": int((end - start).total_seconds()), - "numInSituRecords": 0, - "numInSituMatched": total_values, - "numGriddedChecked": 0, - "numGriddedMatched": total_keys + "numSecondaryMatched": total_values, + "numPrimaryMatched": total_keys } matches = MatchupDoms.convert_to_matches(spark_result)
