Skip to content

Commit

Permalink
return_progress inside get_query_products, passed to run_query of dat…
Browse files Browse the repository at this point in the history
…a_server_query
  • Loading branch information
burnout87 committed Oct 17, 2023
1 parent 1921567 commit 405f326
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cdci_data_analysis/analysis/queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,10 @@ def get_query_products(self,instrument,job,run_asynch,query_type='Real',logger=N
if query_type != 'Dummy':
q = self.get_data_server_query(instrument,config)

res, data_server_query_out = q.run_query(call_back_url=job.get_call_back_url(), run_asynch=run_asynch, logger=logger, return_progress=return_progress)
res, data_server_query_out = q.run_query(call_back_url=job.get_call_back_url(),
run_asynch=run_asynch,
logger=logger,
return_progress=return_progress)

for field in ['message', 'debug_message', 'comment', 'warning']:
if field in data_server_query_out.status_dictionary.keys():
Expand Down

0 comments on commit 405f326

Please sign in to comment.