Skip to content

Commit

Permalink
Remove dfk argument from JobStatusPoller init
Browse files Browse the repository at this point in the history
As of Parsl PR Parsl/parsl#3338, the `dfk`
argument for `JobStatusPoller` initialization is no longer supported.
  • Loading branch information
rjmello committed Jun 28, 2024
1 parent 3c54f59 commit 789a474
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def start(
self.executor.start()
self._status_report_thread.start()
# Add executor to poller *after* executor has started
self.job_status_poller = JobStatusPoller(dfk=None, **self._job_status_kwargs)
self.job_status_poller = JobStatusPoller(**self._job_status_kwargs)
self.job_status_poller.add_executors([self.executor])

def _submit(
Expand Down

0 comments on commit 789a474

Please sign in to comment.