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 c8550a8 commit 2943914
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scos_actions/actions/acquire_sea_data_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -612,10 +612,10 @@ def __call__(self, sensor: Sensor, schedule_entry: dict, task_id: int):
channel_data.append(ray.get(data))
else:
# For 2D arrays (PSD, PVT, PFP)
logger.debug(f"Adding {type(d)}: {d}")
d = ray.get(d)
logger.debug(f"Remove obj was {type(d)}: {d}")
channel_data.extend(d)
for d in data:
d = ray.get(d)
logger.debug(f"Remote obj was {type(d)}: {d}")
channel_data.extend(d)

toc = perf_counter()
logger.debug(f"Waited {toc-tic} s for channel data")
Expand Down

0 comments on commit 2943914

Please sign in to comment.