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:16 UTC

[incubator-sdap-nexus] branch result-retrieval-remove-print created (now 0bb6aa3)

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

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


      at 0bb6aa3  Update ResultsStorage.py

This branch includes the following new commits:

     new 0bb6aa3  Update ResultsStorage.py

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by rk...@apache.org.
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"