Skip to content

Commit

Permalink
Stash
Browse files Browse the repository at this point in the history
  • Loading branch information
yadudoc committed Sep 9, 2024
1 parent 3ed482e commit 8273cc6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion parsl/executors/high_throughput/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -661,11 +661,15 @@ def submit(self, func, resource_specification, *args, **kwargs):
msg = {"task_id": task_id, "buffer": fn_buf}

# Post task to the outgoing queue
self.outgoing_q.put(msg)
# self.outgoing_q.put(msg)
self._submit_task_to_queue(msg)

# Return the future
return fut

def _submit_task_to_queue(self, task_dict: dict):
self.outgoing_q.put(task_dict)

@property
def workers_per_node(self) -> Union[int, float]:
return self._workers_per_node
Expand Down

0 comments on commit 8273cc6

Please sign in to comment.