Skip to content

Commit

Permalink
Undo re-adding task key.
Browse files Browse the repository at this point in the history
  • Loading branch information
delucchi-cmu committed Dec 6, 2023
1 parent ee6b93e commit 221bdd1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/hipscat_import/soap/run_soap.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@ def run(args, client):
resume_plan = SoapPlan(args)
if not resume_plan.is_counting_done():
futures = []
for source_pixel, object_pixels, source_key in resume_plan.count_keys:
for source_pixel, object_pixels, _ in resume_plan.count_keys:
futures.append(
client.submit(
count_joins,
key=source_key,
soap_args=args,
source_pixel=source_pixel,
object_pixels=object_pixels,
Expand All @@ -40,7 +39,6 @@ def run(args, client):
futures.append(
client.submit(
reduce_joins,
key=object_key,
soap_args=args,
object_pixel=object_pixel,
object_key=object_key,
Expand Down

0 comments on commit 221bdd1

Please sign in to comment.