You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MultiBackendJobManager.run_jobs has a start_job callable to create a job and, as suggested by its name, to start it too.
However, blindly starting each job on creation is actually an anti-pattern with the job manager (which knows better when to start jobs, based on capacity).
We should rename start_job to create_job to make the better usage pattern more obvious
The text was updated successfully, but these errors were encountered:
MultiBackendJobManager.run_jobs
has astart_job
callable to create a job and, as suggested by its name, to start it too.However, blindly starting each job on creation is actually an anti-pattern with the job manager (which knows better when to start jobs, based on capacity).
We should rename
start_job
tocreate_job
to make the better usage pattern more obviousThe text was updated successfully, but these errors were encountered: