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/26 17:30:17 UTC

[incubator-sdap-nexus] 01/01: Update ResultsStorage.py

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

rkk pushed a commit to branch result-retrieval-remove-print
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git

commit 0bb6aa3a6da2132148106473cb36486e1ccf8803
Author: Riley Kuttruff <72...@users.noreply.github.com>
AuthorDate: Wed Jul 26 10:30:11 2023 -0700

    Update ResultsStorage.py
---
 analysis/webservice/algorithms/doms/ResultsStorage.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/analysis/webservice/algorithms/doms/ResultsStorage.py b/analysis/webservice/algorithms/doms/ResultsStorage.py
index d0ead7e..248db18 100644
--- a/analysis/webservice/algorithms/doms/ResultsStorage.py
+++ b/analysis/webservice/algorithms/doms/ResultsStorage.py
@@ -285,7 +285,8 @@ class ResultsRetrieval(AbstractResultsContainer):
                     dataMap[row.primary_value_id]["matches"] = []
                 dataMap[row.primary_value_id]["matches"].append(entry)
             else:
-                print(row)
+                # print(row)
+                pass
 
     def __retrievePrimaryData(self, id, trim_data=False):
         cql = "SELECT * FROM doms_data where execution_id = %s and is_primary = true"