Commit cb33df4b authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

return relevant_data_id_list in dispatchers

parent 78bb2a01
...@@ -407,7 +407,7 @@ class Dispatcher: ...@@ -407,7 +407,7 @@ class Dispatcher:
relevant_data_id_list=( relevant_data_id_list=(
[] []
if len(this_data_detector_files) == 0 if len(this_data_detector_files) == 0
else list(this_data_detector_files["_id"]) else list(this_data_detector_files["_id_data"])
), ),
) )
) )
...@@ -523,7 +523,7 @@ class Dispatcher: ...@@ -523,7 +523,7 @@ class Dispatcher:
relevant_data_id_list=( relevant_data_id_list=(
[] []
if len(this_data_obsid_file) == 0 if len(this_data_obsid_file) == 0
else list(this_data_obsid_file["_id"]) else list(this_data_obsid_file["_id_data"])
), ),
) )
) )
...@@ -621,7 +621,7 @@ class Dispatcher: ...@@ -621,7 +621,7 @@ class Dispatcher:
relevant_data_id_list=( relevant_data_id_list=(
[] []
if len(this_obsgroup_file) == 0 if len(this_obsgroup_file) == 0
else list(this_obsgroup_file["_id"]) else list(this_obsgroup_file["_id_data"])
), ),
) )
) )
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment