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 eb049e00a119af27aea0c04d4886f251c40f8974 Author: skorper <[email protected]> AuthorDate: Fri Sep 2 12:08:24 2022 -0700 Fixed matchup db insert. Use new names --- analysis/webservice/algorithms/doms/ResultsStorage.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/analysis/webservice/algorithms/doms/ResultsStorage.py b/analysis/webservice/algorithms/doms/ResultsStorage.py index e9005b7..a228737 100644 --- a/analysis/webservice/algorithms/doms/ResultsStorage.py +++ b/analysis/webservice/algorithms/doms/ResultsStorage.py @@ -145,10 +145,10 @@ class ResultsStorage(AbstractResultsContainer): """ self._session.execute(cql, ( execution_id, - stats["numGriddedMatched"], - stats["numGriddedChecked"], - stats["numInSituMatched"], - stats["numInSituRecords"], + stats["numPrimaryMatched"], + None, + stats["numSecondaryMatched"], + None, stats["timeToComplete"] ))
