Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford committed Apr 9, 2024
1 parent 51ea950 commit 671e282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsl/executors/high_throughput/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ def new_block_info():

block_info: Dict[str, BlockInfo] = defaultdict(new_block_info)

for block_id, job_status in self._poller_mutable_status.items():
for block_id, job_status in self.status().items():
if job_status.state not in TERMINAL_STATES:
# TODO: is there a nicer way to make block_info come into existence?
# can i write just the expression block_info[block_id] on its own?
Expand Down

0 comments on commit 671e282

Please sign in to comment.