Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
dboulware committed Apr 11, 2024
1 parent 81e7d8a commit a1e95ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scos_actions/actions/acquire_sea_data_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ def __call__(self, sensor: Sensor, schedule_entry: dict, task_id: int):
data_products = ray.get(data_ref)
logger.debug(f"data products is {type(data_products)}")
for dp_num, data_product_reference in enumerate(data_products):
logger.debug(f"Getting dp {dp_num}")
logger.debug(f"Getting dp {dp_num}, {data_product_reference}")
data_product = ray.get(data_product_reference)
logger.debug(f"{dp_num} data product is: {type(data_product)}" )
if dp_num == 1:
Expand Down

0 comments on commit a1e95ed

Please sign in to comment.